[#920] cli: Do not add rpc flags to util

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
Pavel Karpy 2021-10-15 13:56:56 +03:00 committed by Alex Vanin
parent b148b85af4
commit f0252e00c1

View file

@ -197,7 +197,6 @@ func initCommonFlagsWithoutRPC(cmd *cobra.Command) {
flags.StringP(walletPath, walletPathShorthand, walletPathDefault, walletPathUsage)
flags.StringP(wif, wifShorthand, wifDefault, wifUsage)
flags.StringP(address, addressShorthand, addressDefault, addressUsage)
flags.StringP(rpc, rpcShorthand, rpcDefault, rpcUsage)
flags.BoolP(verbose, verboseShorthand, verboseDefault, verboseUsage)
}