From ccfbf557c7db411cc8e5eb8bbbde99a8f2f4e3fa Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Thu, 3 Sep 2020 00:37:13 -0400 Subject: [PATCH] InitialPledgeRequirement is now InitialPledge --- cmd/lotus-storage-miner/info.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/lotus-storage-miner/info.go b/cmd/lotus-storage-miner/info.go index dbb93c972..d504a86a9 100644 --- a/cmd/lotus-storage-miner/info.go +++ b/cmd/lotus-storage-miner/info.go @@ -188,7 +188,7 @@ func infoCmdAct(cctx *cli.Context) error { fmt.Printf("Miner Balance: %s\n", color.YellowString("%s", types.FIL(mact.Balance))) fmt.Printf("\tPreCommit: %s\n", types.FIL(mas.PreCommitDeposits)) - fmt.Printf("\tPledge: %s\n", types.FIL(mas.InitialPledgeRequirement)) + fmt.Printf("\tPledge: %s\n", types.FIL(mas.InitialPledge)) fmt.Printf("\tLocked: %s\n", types.FIL(mas.LockedFunds)) color.Green("\tAvailable: %s", types.FIL(mas.GetAvailableBalance(mact.Balance))) wb, err := api.WalletBalance(ctx, mi.Worker)