diff options
| author | tobtoht <tob@featherwallet.org> | 2026-04-02 20:04:02 +0000 |
|---|---|---|
| committer | tobtoht <tob@featherwallet.org> | 2026-04-02 20:04:02 +0000 |
| commit | 2953f74a84f534d10fe45d2d4c7002f350e0adbd (patch) | |
| tree | 8ef5f0c25ee7f0e58af6b159ea596adce6d8fec5 /src/daemon/main.cpp | |
| parent | ee1bbe766317b2197510d038753be62f09c13c00 (diff) | |
| parent | 7f2cfe9294ec1fa7bece2a8069114c1b6985650f (diff) | |
| download | monzero-core-2953f74a84f534d10fe45d2d4c7002f350e0adbd.tar.gz monzero-core-2953f74a84f534d10fe45d2d4c7002f350e0adbd.tar.xz monzero-core-2953f74a84f534d10fe45d2d4c7002f350e0adbd.zip | |
Merge pull request #10389
7f2cfe9 zmq: add restricted rpc mode (selsta)
dd0fb6c daemon: warn user on specifiying ZMQ args with --no-zmq (jeffro256)
Diffstat (limited to 'src/daemon/main.cpp')
| -rw-r--r-- | src/daemon/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/daemon/main.cpp b/src/daemon/main.cpp index 38b99ff49..39ef04772 100644 --- a/src/daemon/main.cpp +++ b/src/daemon/main.cpp @@ -158,6 +158,8 @@ int main(int argc, char const * argv[]) command_line::add_arg(core_settings, daemon_args::arg_zmq_rpc_bind_ip); command_line::add_arg(core_settings, daemon_args::arg_zmq_rpc_bind_port); command_line::add_arg(core_settings, daemon_args::arg_zmq_pub); + command_line::add_arg(core_settings, daemon_args::arg_confirm_zmq_rpc_external_bind); + command_line::add_arg(core_settings, daemon_args::arg_restricted_zmq_rpc); command_line::add_arg(core_settings, daemon_args::arg_zmq_rpc_disabled); daemonizer::init_options(hidden_options, visible_options); |
