From f7c254b3de8cb61c47ffb088d2f6a8a3f7f01e41 Mon Sep 17 00:00:00 2001 From: Phi-rjan Date: Wed, 20 Sep 2023 11:17:57 +0200 Subject: [PATCH] Update cli/wallet.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Łukasz Magiera --- cli/wallet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/wallet.go b/cli/wallet.go index 3115e0c0f..faf7bc239 100644 --- a/cli/wallet.go +++ b/cli/wallet.go @@ -463,7 +463,7 @@ var walletSign = &cli.Command{ // Check if the address is a multisig address act, actErr := api.StateGetActor(ctx, addr, types.EmptyTSK) if actErr == nil && builtin.IsMultisigActor(act.Code) { - return xerrors.Errorf("multisig is an actor account that doesn’t have keys to sign transactions. To send a message with a multisig, signers of the multisig need to propose and approve transactions.") + return xerrors.Errorf("specified signer address is a multisig actor, it doesn’t have keys to sign transactions. To send a message with a multisig, signers of the multisig need to propose and approve transactions.") } return xerrors.Errorf("failed to sign message: %w", err) }