2020-02-11 20:48:03 +00:00
|
|
|
package genesis
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2020-02-25 20:54:58 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin"
|
2020-02-11 20:48:03 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/market"
|
2020-07-23 00:14:54 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/util/adt"
|
2020-02-11 20:48:03 +00:00
|
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-07-23 02:05:11 +00:00
|
|
|
bstore "github.com/filecoin-project/lotus/lib/blockstore"
|
2020-02-11 20:48:03 +00:00
|
|
|
)
|
|
|
|
|
2020-02-12 07:44:20 +00:00
|
|
|
func SetupStorageMarketActor(bs bstore.Blockstore) (*types.Actor, error) {
|
2020-07-23 00:14:54 +00:00
|
|
|
store := adt.WrapStore(context.TODO(), cbor.NewCborStore(bs))
|
2020-02-11 20:48:03 +00:00
|
|
|
|
2020-07-23 00:14:54 +00:00
|
|
|
a, err := adt.MakeEmptyArray(store).Root()
|
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
|
|
|
}
|
2020-07-23 00:14:54 +00:00
|
|
|
h, err := adt.MakeEmptyMap(store).Root()
|
2020-02-21 16:57:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
sms := market.ConstructState(a, h, h)
|
2020-02-11 20:48:03 +00:00
|
|
|
|
2020-07-23 00:14:54 +00:00
|
|
|
stcid, err := store.Put(store.Context(), sms)
|
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{
|
2020-02-25 20:54:58 +00:00
|
|
|
Code: builtin.StorageMarketActorCodeID,
|
2020-02-11 20:48:03 +00:00
|
|
|
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
|
|
|
}
|