Merge pull request #9137

8d25418 daemon: warn user on specifiying ZMQ args with --no-zmq (jeffro256)
This commit is contained in:
luigi1111 2024-02-24 10:04:56 -05:00
commit 7904879326
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 19 additions and 0 deletions

View File

@ -124,6 +124,25 @@ public:
core.get().set_txpool_listener(cryptonote::listener::zmq_pub::txpool_add{shared});
}
}
else // if --no-zmq specified
{
// Assert that none of --zmq-rpc-bind-port, --zmq-rpc-bind-ip, and --zmq-pub are specified b/c
// that does not make semantic sense with --no-zmq.
if (command_line::get_arg(vm, daemon_args::arg_zmq_rpc_bind_port) !=
daemon_args::arg_zmq_rpc_bind_port.default_value)
{
MWARNING("WARN: --zmq-rpc-bind-port has no effect because --no-zmq was specified");
}
else if (command_line::get_arg(vm, daemon_args::arg_zmq_rpc_bind_ip) !=
daemon_args::arg_zmq_rpc_bind_ip.default_value)
{
MWARNING("WARN: --zmq-rpc-bind-ip has no effect because --no-zmq was specified");
}
else if (!command_line::get_arg(vm, daemon_args::arg_zmq_pub).empty())
{
MWARNING("WARN: --zmq-pub has no effect because --no-zmq was specified");
}
}
}
};