From d010b68c61e5b277c05ac5f6be3e8a4a1695c454 Mon Sep 17 00:00:00 2001 From: Alexander Bezobchuk Date: Mon, 30 Sep 2019 11:21:38 -0400 Subject: [PATCH] Merge PR #5114: Fix offline flag description --- x/auth/client/cli/tx_sign.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/auth/client/cli/tx_sign.go b/x/auth/client/cli/tx_sign.go index 8ae87cb40cef..95dd0b08d36e 100644 --- a/x/auth/client/cli/tx_sign.go +++ b/x/auth/client/cli/tx_sign.go @@ -72,7 +72,7 @@ be generated via the 'multisign' command. cmd.Flags().Bool(flagSigOnly, false, "Print only the generated signature, then exit") cmd.Flags().Bool( flagOffline, false, - "Offline mode; Do not query a full node. --account and --sequence options would be ignored if offline is set", + "Offline mode; Do not query a full node. --account and --sequence options would be required if offline is set", ) cmd.Flags().String(flagOutfile, "", "The document will be written to the given file instead of STDOUT")