2020-02-14 21:38:18 +00:00
|
|
|
package genesis
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-07-23 02:05:11 +00:00
|
|
|
|
2021-06-18 21:20:48 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/big"
|
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-03-26 01:00:25 +00:00
|
|
|
|
2020-02-14 21:38:18 +00:00
|
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
2020-07-23 02:05:11 +00:00
|
|
|
|
2021-01-29 20:01:00 +00:00
|
|
|
bstore "github.com/filecoin-project/lotus/blockstore"
|
2020-07-23 02:05:11 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-02-14 21:38:18 +00:00
|
|
|
)
|
|
|
|
|
2021-05-15 01:11:23 +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)
|
2021-05-15 01:11:23 +00:00
|
|
|
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
|
|
|
|
2021-05-15 01:11:23 +00:00
|
|
|
actcid, err := system.GetActorCodeID(av)
|
2020-02-14 21:38:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|