diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-28 16:06:43 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-11-14 17:06:19 +0000 |
commit | 082db75f28b717a01349026df42c4852a10bb932 (patch) | |
tree | 35b11f34aaeb79ff39fb61e599a74ab333e16825 /src/daemon/daemon.cpp | |
parent | Merge pull request #2756 (diff) | |
download | monero-082db75f28b717a01349026df42c4852a10bb932.tar.xz |
move cryptonote command line options to cryptonote_core
Those have no reason to be in a generic module
Diffstat (limited to '')
-rw-r--r-- | src/daemon/daemon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/daemon.cpp b/src/daemon/daemon.cpp index faa620c54..cf7d5f8ab 100644 --- a/src/daemon/daemon.cpp +++ b/src/daemon/daemon.cpp @@ -88,7 +88,7 @@ t_daemon::t_daemon( ) : mp_internals{new t_internals{vm}} { - bool testnet = command_line::get_arg(vm, command_line::arg_testnet_on); + bool testnet = command_line::get_arg(vm, cryptonote::arg_testnet_on); if (testnet) { zmq_rpc_bind_port = command_line::get_arg(vm, daemon_args::arg_zmq_testnet_rpc_bind_port); |