aboutsummaryrefslogtreecommitdiff
path: root/src/p2p
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-02-09 21:29:35 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-02-21 09:35:23 +0000
commite74b3ab5f720253f88b06de15fa1b5199e7cdeeb (patch)
treeab3c5290a0a8b3ffa3d3a79bee1488f43450c061 /src/p2p
parentMerge pull request #1747 (diff)
downloadmonero-e74b3ab5f720253f88b06de15fa1b5199e7cdeeb.tar.xz
core: add p2p bind port options from net_node
They're now used by core to determine the data directory to use for the txpool directory. This fixes an assert in the core tests, which don't use the RPC server, which normally initializes the P2P code.
Diffstat (limited to 'src/p2p')
-rw-r--r--src/p2p/net_node.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl
index 7ab6a4894..9f87326a0 100644
--- a/src/p2p/net_node.inl
+++ b/src/p2p/net_node.inl
@@ -108,8 +108,8 @@ namespace nodetool
void node_server<t_payload_net_handler>::init_options(boost::program_options::options_description& desc)
{
command_line::add_arg(desc, arg_p2p_bind_ip);
- command_line::add_arg(desc, arg_p2p_bind_port);
- command_line::add_arg(desc, arg_testnet_p2p_bind_port);
+ command_line::add_arg(desc, arg_p2p_bind_port, false);
+ command_line::add_arg(desc, arg_testnet_p2p_bind_port, false);
command_line::add_arg(desc, arg_p2p_external_port);
command_line::add_arg(desc, arg_p2p_allow_local_ip);
command_line::add_arg(desc, arg_p2p_add_peer);