From da64f241eb5a8f4061e8239336918e56b913aa47 Mon Sep 17 00:00:00 2001 From: Rjan Date: Thu, 24 Mar 2022 16:11:24 +0100 Subject: [PATCH] Print "waiting for confirmation.." in msigCreateCmd Prints an addition "waiting for confirmation.." when running `lotus msig create [address1 address2]` to indicate that command is waiting for the msg to be mined into block, and not just hanging. Should fix #4053 --- cli/multisig.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/multisig.go b/cli/multisig.go index 0179378a7..d9255f6e4 100644 --- a/cli/multisig.go +++ b/cli/multisig.go @@ -161,6 +161,7 @@ var msigCreateCmd = &cli.Command{ msgCid := sm.Cid() fmt.Println("sent create in message: ", msgCid) + fmt.Println("waiting for confirmation..") // wait for it to get mined into a block wait, err := api.StateWaitMsg(ctx, msgCid, uint64(cctx.Int("confidence")), build.Finality, true)