diff options
author | Lee Clagett <code@leeclagett.com> | 2024-01-29 21:10:00 -0500 |
---|---|---|
committer | Lee *!* Clagett <code@leeclagett.com> | 2024-01-30 13:36:21 -0500 |
commit | 98ee46f2491dc6252040d96df5a17a237f53ebf7 (patch) | |
tree | d534260e89fbadc155199a3a3bbd096152380686 /src/p2p | |
parent | Merge pull request #9080 (diff) | |
download | monero-98ee46f2491dc6252040d96df5a17a237f53ebf7.tar.xz |
Disable/fix ports with I2P
Diffstat (limited to 'src/p2p')
-rw-r--r-- | src/p2p/net_peerlist_boost_serialization.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p2p/net_peerlist_boost_serialization.h b/src/p2p/net_peerlist_boost_serialization.h index 7d8bd1480..100fe06ca 100644 --- a/src/p2p/net_peerlist_boost_serialization.h +++ b/src/p2p/net_peerlist_boost_serialization.h @@ -196,7 +196,7 @@ namespace boost if (std::strcmp(host, net::i2p_address::unknown_str()) == 0) na = net::i2p_address::unknown(); else - na = MONERO_UNWRAP(net::i2p_address::make(host, port)); + na = MONERO_UNWRAP(net::i2p_address::make(host)); } template <class Archive, class ver_type> |