From 7558f7607918b6337a8b58b8f956d6776f503138 Mon Sep 17 00:00:00 2001 From: Frank Yang Date: Mon, 13 May 2019 22:51:48 +0800 Subject: [PATCH] Merge PR #4321: Improve offline flag doc --- x/auth/client/cli/sign.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/x/auth/client/cli/sign.go b/x/auth/client/cli/sign.go index 6d3a9fe29..2de22d447 100644 --- a/x/auth/client/cli/sign.go +++ b/x/auth/client/cli/sign.go @@ -71,7 +71,10 @@ be generated via the 'multisign' command. "Print the addresses that must sign the transaction, those who have already signed it, and make sure that signatures are in the correct order", ) 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") + cmd.Flags().Bool( + flagOffline, false, + "Offline mode; Do not query a full node. --account and --sequence options would be ignored if offline is set", + ) cmd.Flags().String(flagOutfile, "", "The document will be written to the given file instead of STDOUT") cmd = client.PostCommands(cmd)[0]