daemon: warn user on specifiying ZMQ args with --no-zmq

Resolves https://github.com/monero-project/monero/issues/9127
This commit is contained in:
jeffro256 2024-01-27 16:19:11 -06:00
parent 059028a30a
commit 8d25418df0
No known key found for this signature in database
GPG Key ID: 6F79797A6E392442
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");
}
}
}
};