mirror of
https://github.com/monero-project/monero.git
synced 2026-01-01 15:36:08 -08:00
Register daemon command line arguments to core if they're used in core
This fixes coretests, which does not register daemon specific arguments, but uses core, which uses those arguments. Also gets rid of an unwanted dependency on daemon code from core.
This commit is contained in:
@@ -40,7 +40,6 @@ using namespace epee;
|
||||
#include "misc_language.h"
|
||||
#include "crypto/hash.h"
|
||||
#include "core_rpc_server_error_codes.h"
|
||||
#include "daemon/command_line_args.h"
|
||||
|
||||
namespace cryptonote
|
||||
{
|
||||
@@ -78,7 +77,7 @@ namespace cryptonote
|
||||
const boost::program_options::variables_map& vm
|
||||
)
|
||||
{
|
||||
m_testnet = command_line::get_arg(vm, daemon_args::arg_testnet_on);
|
||||
m_testnet = command_line::get_arg(vm, command_line::arg_testnet_on);
|
||||
|
||||
m_net_server.set_threads_prefix("RPC");
|
||||
bool r = handle_command_line(vm);
|
||||
|
||||
Reference in New Issue
Block a user