aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests/levin.cpp
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-11-23 16:15:50 -0600
committerluigi1111 <luigi1111w@gmail.com>2020-11-23 16:15:50 -0600
commit251c64f1955a67f3f835d8a04593f0353e894b5b (patch)
tree2eb3dc1fd05d746dec1850e91cf946bd3cfd71a4 /tests/unit_tests/levin.cpp
parentMerge pull request #6997 (diff)
parentBetter log message for unusable anon networks (diff)
downloadmonero-251c64f1955a67f3f835d8a04593f0353e894b5b.tar.xz
Merge pull request #7011
398e64c Better log message for unusable anon networks (hyc)
Diffstat (limited to 'tests/unit_tests/levin.cpp')
-rw-r--r--tests/unit_tests/levin.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit_tests/levin.cpp b/tests/unit_tests/levin.cpp
index 28032fa50..128d51fb3 100644
--- a/tests/unit_tests/levin.cpp
+++ b/tests/unit_tests/levin.cpp
@@ -329,7 +329,8 @@ namespace
epee::byte_slice noise = nullptr;
if (noise_size)
noise = epee::levin::make_noise_notify(noise_size);
- return cryptonote::levin::notify{io_service_, connections_, std::move(noise), is_public, pad_txs, events_};
+ epee::net_utils::zone zone = is_public ? epee::net_utils::zone::public_ : epee::net_utils::zone::i2p;
+ return cryptonote::levin::notify{io_service_, connections_, std::move(noise), zone, pad_txs, events_};
}
boost::uuids::random_generator random_generator_;