Remove print response flag (#4593)

This flag isn't used anywhere and probably hasn't for quite some time.
This commit is contained in:
Alexander Bezobchuk
2019-06-20 14:26:48 +02:00
committed by Alessio Treglia
parent c3bef9a211
commit 6d5ca0b4f1
4 changed files with 1 additions and 5 deletions
-2
View File
@@ -43,7 +43,6 @@ type CLIContext struct {
TrustNode bool
UseLedger bool
BroadcastMode string
PrintResponse bool
Verifier tmlite.Verifier
VerifierHome string
Simulate bool
@@ -91,7 +90,6 @@ func NewCLIContextWithFrom(from string) CLIContext {
TrustNode: viper.GetBool(flags.FlagTrustNode),
UseLedger: viper.GetBool(flags.FlagUseLedger),
BroadcastMode: viper.GetString(flags.FlagBroadcastMode),
PrintResponse: viper.GetBool(flags.FlagPrintResponse),
Verifier: verifier,
Simulate: viper.GetBool(flags.FlagDryRun),
GenerateOnly: genOnly,