lotus/chain/gen/genesis/f00_system.go

64 lines
1.6 KiB
Go
Raw Normal View History

2020-02-14 21:38:18 +00:00
package genesis
import (
"context"
"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-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"
"github.com/filecoin-project/lotus/chain/actors"
"github.com/filecoin-project/lotus/chain/actors/adt"
2022-06-14 15:00:51 +00:00
"github.com/filecoin-project/lotus/chain/actors/builtin"
"github.com/filecoin-project/lotus/chain/actors/builtin/system"
"github.com/filecoin-project/lotus/chain/types"
2020-02-14 21:38:18 +00:00
)
func SetupSystemActor(ctx context.Context, bs bstore.Blockstore, av actors.Version) (*types.Actor, error) {
2020-02-14 21:38:18 +00:00
cst := cbor.NewCborStore(bs)
// TODO pass in built-in actors cid for V8 and later
st, err := system.MakeState(adt.WrapStore(ctx, cst), av, cid.Undef)
if err != nil {
return nil, err
}
if av >= actors.Version8 {
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)
st8.BuiltinActors = mf.Data
}
statecid, err := cst.Put(ctx, st.GetState())
if err != nil {
return nil, err
}
2020-02-14 21:38:18 +00:00
2022-04-20 21:34:28 +00:00
actcid, err := builtin.GetSystemActorCodeID(av)
2020-02-14 21:38:18 +00:00
if err != nil {
return nil, err
}
act := &types.Actor{
Code: actcid,
Head: statecid,
Balance: big.Zero(),
2020-02-14 21:38:18 +00:00
}
return act, nil
}