29 lines
597 B
Go
29 lines
597 B
Go
|
package genesis
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/filecoin-project/lotus/chain/types"
|
||
|
"github.com/filecoin-project/specs-actors/actors/builtin"
|
||
|
"github.com/filecoin-project/specs-actors/actors/util/adt"
|
||
|
bstore "github.com/ipfs/go-ipfs-blockstore"
|
||
|
cbor "github.com/ipfs/go-ipld-cbor"
|
||
|
)
|
||
|
|
||
|
func SetupSystemActor(bs bstore.Blockstore) (*types.Actor, error) {
|
||
|
var st adt.EmptyValue
|
||
|
|
||
|
cst := cbor.NewCborStore(bs)
|
||
|
|
||
|
statecid, err := cst.Put(context.TODO(), &st)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
act := &types.Actor{
|
||
|
Code: builtin.SystemActorCodeID,
|
||
|
Head: statecid,
|
||
|
}
|
||
|
|
||
|
return act, nil
|
||
|
}
|