diff --git a/wallet/src/main.rs b/wallet/src/main.rs index 4dbb144004..ecdc753db0 100644 --- a/wallet/src/main.rs +++ b/wallet/src/main.rs @@ -15,11 +15,6 @@ pub fn parse_args(matches: &ArgMatches<'_>) -> Result) -> Result Result<(), Box> { .value_name("PATH") .takes_value(true) .help("/path/to/id.json"), - ).arg( - Arg::with_name("timeout") - .long("timeout") - .value_name("SECS") - .takes_value(true) - .help("Max seconds to wait to get necessary gossip from the network"), ).arg( Arg::with_name("proxy") .long("proxy") diff --git a/wallet/src/wallet.rs b/wallet/src/wallet.rs index dcb340df55..a157140f65 100644 --- a/wallet/src/wallet.rs +++ b/wallet/src/wallet.rs @@ -86,7 +86,6 @@ pub struct WalletConfig { pub id: Keypair, pub command: WalletCommand, pub network: SocketAddr, - pub timeout: Option, pub proxy: Option, pub drone_port: Option, pub rpc_client: Option, @@ -100,7 +99,6 @@ impl Default for WalletConfig { id: Keypair::new(), command: WalletCommand::Balance, network: default_addr, - timeout: None, proxy: None, drone_port: None, rpc_client: None,