From 16743a25c26f3c0e3b30fac0caa0e7772f4639fb Mon Sep 17 00:00:00 2001 From: Jennifer Wang Date: Mon, 11 Oct 2021 12:34:51 -0400 Subject: [PATCH] print confidence in decimal --- cmd/lotus-miner/actor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/lotus-miner/actor.go b/cmd/lotus-miner/actor.go index 7f0f2833d..940a73240 100644 --- a/cmd/lotus-miner/actor.go +++ b/cmd/lotus-miner/actor.go @@ -282,7 +282,7 @@ var actorWithdrawCmd = &cli.Command{ fmt.Printf("Requested rewards withdrawal in message %s\n", smsg.Cid()) // wait for it to get mined into a block - fmt.Printf("waiting for %x epochs for confirmation..\n", uint64(cctx.Int("confidence"))) + fmt.Printf("waiting for %d epochs for confirmation..\n", uint64(cctx.Int("confidence"))) wait, err := api.StateWaitMsg(ctx, smsg.Cid(), uint64(cctx.Int("confidence"))) if err != nil { return err