diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-11-29 20:05:26 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-11-29 20:07:01 +0000 |
commit | 5f2a32c15ab0eef7bf0e0a0f9cd1362a1c456a22 (patch) | |
tree | cec0e5fbf57e2a8d6283757ef977d691101dea25 /src/rpc/core_rpc_server.cpp | |
parent | Merge pull request #6174 (diff) | |
download | monero-5f2a32c15ab0eef7bf0e0a0f9cd1362a1c456a22.tar.xz |
daemon: run with -rpc-payment-address and --rpc-restricted-bind-port
Diffstat (limited to 'src/rpc/core_rpc_server.cpp')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index 9117b5b3a..ab7faf52b 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -231,6 +231,7 @@ namespace cryptonote const boost::program_options::variables_map& vm , const bool restricted , const std::string& port + , bool allow_rpc_payment ) { m_restricted = restricted; @@ -242,7 +243,7 @@ namespace cryptonote return false; std::string address = command_line::get_arg(vm, arg_rpc_payment_address); - if (!address.empty()) + if (!address.empty() && allow_rpc_payment) { if (!m_restricted && nettype() != FAKECHAIN) { |