diff options
author | Miguel Herranz <miguel@ipglider.org> | 2017-01-28 01:36:39 +0100 |
---|---|---|
committer | Miguel Herranz <miguel@ipglider.org> | 2017-01-28 14:16:06 +0100 |
commit | ca94d0a43c2efe174ee381b4ada0014542eccd81 (patch) | |
tree | 0509a890d652e58b4320f20c4e584a64f9ee0689 /src/p2p | |
parent | Merge pull request #1622 (diff) | |
download | monero-ca94d0a43c2efe174ee381b4ada0014542eccd81.tar.xz |
Separate data per P2P port
poolstate.bin and p2pstate.bin are stored in .bitmonero/ if the default
P2P port is being used.
If another port is used both files are stored in
.bitmonero/PORTNUMBER/.
Diffstat (limited to 'src/p2p')
-rw-r--r-- | src/p2p/net_node.inl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index 0e43d9579..2cda7cb8b 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -505,6 +505,11 @@ namespace nodetool auto config_arg = testnet ? command_line::arg_testnet_data_dir : command_line::arg_data_dir; m_config_folder = command_line::get_arg(vm, config_arg); + if ((!testnet && m_port != std::to_string(::config::P2P_DEFAULT_PORT)) + || (testnet && m_port != std::to_string(::config::testnet::P2P_DEFAULT_PORT))) { + m_config_folder = m_config_folder + "/" + m_port; + } + res = init_config(); CHECK_AND_ASSERT_MES(res, false, "Failed to init config."); |