From 18211b7bee3c8f44356765f2eeebaf0c6c21c109 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Thu, 26 Sep 2019 01:32:33 +0200 Subject: [PATCH] storageminer: Fix PledgeCollateral calc on init --- api/api.go | 1 + api/struct.go | 5 +++++ cmd/lotus-storage-miner/init.go | 5 ++++- node/impl/full/state.go | 24 ++++++++++++++++++++++++ 4 files changed, 34 insertions(+), 1 deletion(-) diff --git a/api/api.go b/api/api.go index 1b6d5361a..13d4de47d 100644 --- a/api/api.go +++ b/api/api.go @@ -116,6 +116,7 @@ type FullNode interface { StateMinerWorker(context.Context, address.Address, *types.TipSet) (address.Address, error) StateMinerPeerID(ctx context.Context, m address.Address, ts *types.TipSet) (peer.ID, error) StateMinerProvingPeriodEnd(ctx context.Context, actor address.Address, ts *types.TipSet) (uint64, error) + StatePledgeCollateral(context.Context, *types.TipSet) (types.BigInt, error) PaychGet(ctx context.Context, from, to address.Address, ensureFunds types.BigInt) (*ChannelInfo, error) PaychList(context.Context) ([]address.Address, error) diff --git a/api/struct.go b/api/struct.go index 3437bb47d..78a08bb62 100644 --- a/api/struct.go +++ b/api/struct.go @@ -84,6 +84,7 @@ type FullNodeStruct struct { StateReplay func(context.Context, *types.TipSet, cid.Cid) (*ReplayResults, error) `perm:"read"` StateGetActor func(context.Context, address.Address, *types.TipSet) (*types.Actor, error) `perm:"read"` StateReadState func(context.Context, *types.Actor, *types.TipSet) (*ActorState, error) `perm:"read"` + StatePledgeCollateral func(context.Context, *types.TipSet) (types.BigInt, error) `perm:"read"` PaychGet func(ctx context.Context, from, to address.Address, ensureFunds types.BigInt) (*ChannelInfo, error) `perm:"sign"` PaychList func(context.Context) ([]address.Address, error) `perm:"read"` @@ -322,6 +323,10 @@ func (c *FullNodeStruct) StateReadState(ctx context.Context, act *types.Actor, t return c.Internal.StateReadState(ctx, act, ts) } +func (c *FullNodeStruct) StatePledgeCollateral(ctx context.Context, ts *types.TipSet) (types.BigInt, error) { + return c.Internal.StatePledgeCollateral(ctx, ts) +} + func (c *FullNodeStruct) PaychGet(ctx context.Context, from, to address.Address, ensureFunds types.BigInt) (*ChannelInfo, error) { return c.Internal.PaychGet(ctx, from, to, ensureFunds) } diff --git a/cmd/lotus-storage-miner/init.go b/cmd/lotus-storage-miner/init.go index 4254924cd..3d2e113dd 100644 --- a/cmd/lotus-storage-miner/init.go +++ b/cmd/lotus-storage-miner/init.go @@ -233,7 +233,10 @@ func createStorageMiner(ctx context.Context, api api.FullNode, peerid peer.ID, c return address.Undef, err } - collateral := types.NewInt(1000) // TODO: Get this from params + collateral, err := api.StatePledgeCollateral(ctx, nil) + if err != nil { + return address.Undef, err + } params, err := actors.SerializeParams(&actors.CreateStorageMinerParams{ Owner: owner, diff --git a/node/impl/full/state.go b/node/impl/full/state.go index 2b1414d4d..1e1558cf8 100644 --- a/node/impl/full/state.go +++ b/node/impl/full/state.go @@ -83,6 +83,30 @@ func (a *StateAPI) StateMinerProvingPeriodEnd(ctx context.Context, actor address return stmgr.GetMinerProvingPeriodEnd(ctx, a.StateManager, ts, actor) } +func (a *StateAPI) StatePledgeCollateral(ctx context.Context, ts *types.TipSet) (types.BigInt, error) { + param, err := actors.SerializeParams(&actors.PledgeCollateralParams{Size: types.NewInt(0)}) + if err != nil { + return types.NewInt(0), err + } + + ret, aerr := a.StateManager.Call(ctx, &types.Message{ + From: actors.StorageMarketAddress, + To: actors.StorageMarketAddress, + Method: actors.SMAMethods.PledgeCollateralForSize, + + Params: param, + }, ts) + if aerr != nil { + return types.NewInt(0), xerrors.Errorf("failed to get miner worker addr: %w", err) + } + + if ret.ExitCode != 0 { + return types.NewInt(0), xerrors.Errorf("failed to get miner worker addr (exit code %d)", ret.ExitCode) + } + + return types.BigFromBytes(ret.Return), nil +} + func (a *StateAPI) StateCall(ctx context.Context, msg *types.Message, ts *types.TipSet) (*types.MessageReceipt, error) { return a.StateManager.Call(ctx, msg, ts) }