diff options
author | xiphon <xiphon@protonmail.com> | 2019-10-13 13:27:46 +0000 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2019-10-13 13:27:46 +0000 |
commit | d4d2b5c79a04858cd47ceae58401dacf8fb59836 (patch) | |
tree | 6ac5c3505a68ec46cd4ae6058e0766ed3a96fa91 /src/rpc/rpc_args.h | |
parent | Merge pull request #5978 (diff) | |
download | monero-d4d2b5c79a04858cd47ceae58401dacf8fb59836.tar.xz |
p2p+rpc: don't skip p2p or rpc port bind failure by default
Diffstat (limited to 'src/rpc/rpc_args.h')
-rw-r--r-- | src/rpc/rpc_args.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/rpc_args.h b/src/rpc/rpc_args.h index cd154a4d0..bdb9c70d5 100644 --- a/src/rpc/rpc_args.h +++ b/src/rpc/rpc_args.h @@ -54,7 +54,7 @@ namespace cryptonote const command_line::arg_descriptor<std::string> rpc_bind_ip; const command_line::arg_descriptor<std::string> rpc_bind_ipv6_address; const command_line::arg_descriptor<bool> rpc_use_ipv6; - const command_line::arg_descriptor<bool> rpc_require_ipv4; + const command_line::arg_descriptor<bool> rpc_ignore_ipv4; const command_line::arg_descriptor<std::string> rpc_login; const command_line::arg_descriptor<bool> confirm_external_bind; const command_line::arg_descriptor<std::string> rpc_access_control_origins; |