InitialPledgeRequirement is now InitialPledge

This commit is contained in:
Aayush Rajasekaran 2020-09-03 00:37:13 -04:00
parent b7d11a236b
commit ccfbf557c7

View File

@ -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)