Merge pull request #6198

5f2a32c daemon: run with -rpc-payment-address and --rpc-restricted-bind-port (moneromooo-monero)
This commit is contained in:
luigi1111 2020-02-19 22:25:44 -05:00
commit 39e1890276
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
4 changed files with 11 additions and 7 deletions

View file

@ -236,6 +236,7 @@ namespace cryptonote
const boost::program_options::variables_map& vm
, const bool restricted
, const std::string& port
, bool allow_rpc_payment
)
{
m_restricted = restricted;
@ -247,7 +248,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)
{

View file

@ -88,7 +88,8 @@ namespace cryptonote
bool init(
const boost::program_options::variables_map& vm,
const bool restricted,
const std::string& port
const std::string& port,
bool allow_rpc_payment
);
network_type nettype() const { return m_core.get_nettype(); }