Fix missnamed variable

Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
This commit is contained in:
Jakub Sztandera 2021-10-11 14:06:21 +02:00 committed by Jennifer Wang
parent 8eeecb431b
commit bb74308ac9

View File

@ -648,7 +648,7 @@ var walletMarketWithdraw = &cli.Command{
} }
fmt.Printf("Successfully withdrew %s FIL\n", withdrawn) fmt.Printf("Successfully withdrew %s FIL\n", withdrawn)
if withdrawn.LessThan(amount) { if withdrawn.LessThan(amt) {
fmt.Printf("Note that this is less than the requested amount of %s FIL\n", amt) fmt.Printf("Note that this is less than the requested amount of %s FIL\n", amt)
} }
} }