2020-02-14 21:38:18 +00:00
|
|
|
package genesis
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-07-23 02:05:11 +00:00
|
|
|
|
2022-06-07 03:14:16 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2022-06-14 15:00:51 +00:00
|
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
|
|
|
"golang.org/x/xerrors"
|
2022-06-07 03:14:16 +00:00
|
|
|
|
2022-09-06 15:49:29 +00:00
|
|
|
actorstypes "github.com/filecoin-project/go-state-types/actors"
|
2022-06-14 15:00:51 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/big"
|
2022-04-20 21:34:28 +00:00
|
|
|
systemtypes "github.com/filecoin-project/go-state-types/builtin/v8/system"
|
|
|
|
"github.com/filecoin-project/go-state-types/manifest"
|
|
|
|
|
2022-06-14 15:00:51 +00:00
|
|
|
bstore "github.com/filecoin-project/lotus/blockstore"
|
2021-05-15 01:11:23 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors/builtin/system"
|
2020-07-23 02:05:11 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-02-14 21:38:18 +00:00
|
|
|
)
|
|
|
|
|
2022-09-06 15:49:29 +00:00
|
|
|
func SetupSystemActor(ctx context.Context, bs bstore.Blockstore, av actorstypes.Version) (*types.Actor, error) {
|
2020-02-14 21:38:18 +00:00
|
|
|
|
|
|
|
cst := cbor.NewCborStore(bs)
|
2022-06-07 03:14:16 +00:00
|
|
|
// TODO pass in built-in actors cid for V8 and later
|
|
|
|
st, err := system.MakeState(adt.WrapStore(ctx, cst), av, cid.Undef)
|
2021-05-15 01:11:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-09-06 15:49:29 +00:00
|
|
|
if av >= actorstypes.Version8 {
|
2022-04-07 21:56:07 +00:00
|
|
|
mfCid, ok := actors.GetManifest(av)
|
|
|
|
if !ok {
|
|
|
|
return nil, xerrors.Errorf("missing manifest for actors version %d", av)
|
|
|
|
}
|
|
|
|
|
|
|
|
mf := manifest.Manifest{}
|
|
|
|
if err := cst.Get(ctx, mfCid, &mf); err != nil {
|
|
|
|
return nil, xerrors.Errorf("loading manifest for actors version %d: %w", av, err)
|
|
|
|
}
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
st8 := st.GetState().(*systemtypes.State)
|
2022-04-07 21:56:07 +00:00
|
|
|
st8.BuiltinActors = mf.Data
|
|
|
|
}
|
|
|
|
|
2021-05-15 01:11:23 +00:00
|
|
|
statecid, err := cst.Put(ctx, st.GetState())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-14 21:38:18 +00:00
|
|
|
|
2022-06-29 16:54:14 +00:00
|
|
|
actcid, ok := actors.GetActorCodeID(av, actors.SystemKey)
|
|
|
|
if !ok {
|
|
|
|
return nil, xerrors.Errorf("failed to get system actor code ID for actors version %d", av)
|
2020-02-14 21:38:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
act := &types.Actor{
|
2021-06-18 21:20:48 +00:00
|
|
|
Code: actcid,
|
|
|
|
Head: statecid,
|
|
|
|
Balance: big.Zero(),
|
2020-02-14 21:38:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return act, nil
|
|
|
|
}
|