diff options
| author | xiphon <xiphon@protonmail.com> | 2020-11-20 11:37:19 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2020-11-25 01:27:42 +0000 |
| commit | a9cd5d914e032f2ae6ce56e6b48f0f47d3a56ad7 (patch) | |
| tree | d38857614b328ebccf77fba6bed35834ff029fa6 /tests/unit_tests/levin.cpp | |
| parent | 9c1562c03864f44a99d076bd3b244d3a1fea65b4 (diff) | |
| download | monzero-core-a9cd5d914e032f2ae6ce56e6b48f0f47d3a56ad7.tar.gz monzero-core-a9cd5d914e032f2ae6ce56e6b48f0f47d3a56ad7.tar.xz monzero-core-a9cd5d914e032f2ae6ce56e6b48f0f47d3a56ad7.zip | |
cryptonote_core: dandelion - use local height or median height if syncing
Diffstat (limited to 'tests/unit_tests/levin.cpp')
| -rw-r--r-- | tests/unit_tests/levin.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/unit_tests/levin.cpp b/tests/unit_tests/levin.cpp index 9ff68d927..e7f9e126f 100644 --- a/tests/unit_tests/levin.cpp +++ b/tests/unit_tests/levin.cpp @@ -120,7 +120,12 @@ namespace { std::map<cryptonote::relay_method, std::vector<cryptonote::blobdata>> relayed_; - uint64_t get_target_blockchain_height() const override + virtual bool is_synchronized() const final + { + return false; + } + + virtual uint64_t get_current_blockchain_height() const final { return 0; } |
