diff options
author | xiphon <xiphon@protonmail.com> | 2020-11-20 11:37:19 +0000 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2020-11-25 01:26:03 +0000 |
commit | 9d7f473af02c891def925594c43d1e6833e47309 (patch) | |
tree | 43bd1e4b60c3986a92b67c9ecd8a59fa8cf16abb /tests/unit_tests/node_server.cpp | |
parent | Merge pull request #7011 (diff) | |
download | monero-9d7f473af02c891def925594c43d1e6833e47309.tar.xz |
cryptonote_core: dandelion - use local height or median height if syncing
Diffstat (limited to '')
-rw-r--r-- | tests/unit_tests/node_server.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit_tests/node_server.cpp b/tests/unit_tests/node_server.cpp index 588e91d02..0191e5aa4 100644 --- a/tests/unit_tests/node_server.cpp +++ b/tests/unit_tests/node_server.cpp @@ -47,9 +47,10 @@ namespace cryptonote { class test_core : public cryptonote::i_core_events { public: + virtual bool is_synchronized() const final { return true; } void on_synchronized(){} void safesyncmode(const bool){} - uint64_t get_current_blockchain_height() const {return 1;} + virtual uint64_t get_current_blockchain_height() const final {return 1;} void set_target_blockchain_height(uint64_t) {} bool init(const boost::program_options::variables_map& vm) {return true ;} bool deinit(){return true;} |