2020-02-11 20:48:03 +00:00
|
|
|
package genesis
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
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/market"
|
|
|
|
|
2020-02-11 20:48:03 +00:00
|
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
|
|
|
|
2021-01-29 20:01:00 +00:00
|
|
|
bstore "github.com/filecoin-project/lotus/blockstore"
|
2020-02-11 20:48:03 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
)
|
|
|
|
|
2021-05-15 01:11:23 +00:00
|
|
|
func SetupStorageMarketActor(ctx context.Context, bs bstore.Blockstore, av actors.Version) (*types.Actor, error) {
|
|
|
|
cst := cbor.NewCborStore(bs)
|
|
|
|
mst, err := market.MakeState(adt.WrapStore(ctx, cbor.NewCborStore(bs)), av)
|
2020-02-11 20:48:03 +00:00
|
|
|
if err != nil {
|
2020-02-12 00:58:55 +00:00
|
|
|
return nil, err
|
2020-02-11 20:48:03 +00:00
|
|
|
}
|
2021-05-15 01:11:23 +00:00
|
|
|
|
|
|
|
statecid, err := cst.Put(ctx, mst.GetState())
|
2020-02-21 16:57:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-05-15 01:11:23 +00:00
|
|
|
actcid, err := market.GetActorCodeID(av)
|
2020-02-11 20:48:03 +00:00
|
|
|
if err != nil {
|
2020-02-12 00:58:55 +00:00
|
|
|
return nil, err
|
2020-02-11 20:48:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
act := &types.Actor{
|
2021-06-18 21:20:48 +00:00
|
|
|
Code: actcid,
|
|
|
|
Head: statecid,
|
|
|
|
Balance: big.Zero(),
|
2020-02-11 20:48:03 +00:00
|
|
|
}
|
|
|
|
|
2020-02-12 00:58:55 +00:00
|
|
|
return act, nil
|
2020-02-11 20:48:03 +00:00
|
|
|
}
|