2020-02-11 20:48:03 +00:00
|
|
|
package genesis
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/market"
|
|
|
|
bstore "github.com/ipfs/go-ipfs-blockstore"
|
|
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
|
|
"github.com/filecoin-project/lotus/chain/store"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
)
|
|
|
|
|
2020-02-12 07:44:20 +00:00
|
|
|
func SetupStorageMarketActor(bs bstore.Blockstore) (*types.Actor, error) {
|
2020-02-11 20:48:03 +00:00
|
|
|
cst := cbor.NewCborStore(bs)
|
|
|
|
ast := store.ActorStore(context.TODO(), bs)
|
|
|
|
|
|
|
|
sms, err := market.ConstructState(ast)
|
|
|
|
if err != nil {
|
2020-02-12 00:58:55 +00:00
|
|
|
return nil, err
|
2020-02-11 20:48:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stcid, err := cst.Put(context.TODO(), sms)
|
|
|
|
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{
|
|
|
|
Code: actors.StorageMarketCodeCid,
|
|
|
|
Head: stcid,
|
|
|
|
Balance: types.NewInt(0),
|
|
|
|
}
|
|
|
|
|
2020-02-12 00:58:55 +00:00
|
|
|
return act, nil
|
2020-02-11 20:48:03 +00:00
|
|
|
}
|