lotus/chain/gen/genesis/f00_system.go

41 lines
834 B
Go
Raw Normal View History

2020-02-14 21:38:18 +00:00
package genesis
import (
"context"
"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-02-14 21:38:18 +00:00
cbor "github.com/ipfs/go-ipld-cbor"
bstore "github.com/filecoin-project/lotus/blockstore"
"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)
st, err := system.MakeState(adt.WrapStore(ctx, cst), av)
if err != nil {
return nil, err
}
statecid, err := cst.Put(ctx, st.GetState())
if err != nil {
return nil, err
}
2020-02-14 21:38:18 +00:00
actcid, err := system.GetActorCodeID(av)
2020-02-14 21:38:18 +00:00
if err != nil {
return nil, err
}
act := &types.Actor{
Code: actcid,
2020-02-14 21:38:18 +00:00
Head: statecid,
}
return act, nil
}