From 1d28c0d8a994fee370675c28964fce92c22d49e8 Mon Sep 17 00:00:00 2001 From: whythat Date: Sun, 18 Feb 2018 17:09:39 +0200 Subject: [PATCH] p2p: restore m_testnet assignment lost during rebase --- src/p2p/net_node.inl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index c1de21f22..59b417d90 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -262,6 +262,7 @@ namespace nodetool const boost::program_options::variables_map& vm ) { + m_testnet = command_line::get_arg(vm, cryptonote::arg_testnet_on); m_bind_ip = command_line::get_arg(vm, arg_p2p_bind_ip); m_port = command_line::get_arg(vm, arg_p2p_bind_port); m_external_port = command_line::get_arg(vm, arg_p2p_external_port);