From 75181a78c395d1d5856154c6b7feb43e2737302e Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Sat, 29 Jul 2017 17:41:13 -0400 Subject: [PATCH] Hide trust flag --- client/commands/proofs/root.go | 1 + 1 file changed, 1 insertion(+) diff --git a/client/commands/proofs/root.go b/client/commands/proofs/root.go index 9a1f50d272..b833f3da4a 100644 --- a/client/commands/proofs/root.go +++ b/client/commands/proofs/root.go @@ -26,4 +26,5 @@ func init() { RootCmd.PersistentFlags().Int(FlagHeight, 0, "Height to query (skip to use latest block)") RootCmd.PersistentFlags().Bool(commands.FlagTrustNode, false, "DANGEROUS: blindly trust all results from the server") + RootCmd.PersistentFlags().MarkHidden(commands.FlagTrustNode) }