From 0444563e6521796b74467b125465f5c6d3e78edf Mon Sep 17 00:00:00 2001 From: Phi Date: Wed, 8 Jun 2022 10:43:49 +0200 Subject: [PATCH] fix: paych: Print "waiting for confirmation.." Prints an "waiting for confirmation.." when running `lotus paych [fromAddress toAddress amount]` to indicate that the command is waiting for the msg to be confirmed and not just hanging. --- cli/paych.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/paych.go b/cli/paych.go index 92c1a13e3..325d9160f 100644 --- a/cli/paych.go +++ b/cli/paych.go @@ -92,6 +92,7 @@ var paychAddFundsCmd = &cli.Command{ } // Wait for the message to be confirmed + fmt.Println("waiting for confirmation..") chAddr, err := api.PaychGetWaitReady(ctx, info.WaitSentinel) if err != nil { return err