diff options
author | Alexander Blair <snipa@jagtech.io> | 2020-12-28 11:40:25 -0800 |
---|---|---|
committer | Alexander Blair <snipa@jagtech.io> | 2020-12-28 11:40:26 -0800 |
commit | 5804add75b413f5c76d88f7d7450901bb16a7afb (patch) | |
tree | f7a17bc4885766eb3457a3a9fe122cd6ad64d50f /tests/unit_tests/node_server.cpp | |
parent | Merge pull request #7203 (diff) | |
parent | protocol: fix false positives dropping peers (diff) | |
download | monero-5804add75b413f5c76d88f7d7450901bb16a7afb.tar.xz |
Merge pull request #7206
8c8f3d73b protocol: fix false positives dropping peers (moneromooo-monero)
Diffstat (limited to '')
-rw-r--r-- | tests/unit_tests/node_server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit_tests/node_server.cpp b/tests/unit_tests/node_server.cpp index 0191e5aa4..0569d3748 100644 --- a/tests/unit_tests/node_server.cpp +++ b/tests/unit_tests/node_server.cpp @@ -93,6 +93,7 @@ public: bool has_block_weights(uint64_t height, uint64_t nblocks) const { return false; } bool get_txpool_complement(const std::vector<crypto::hash> &hashes, std::vector<cryptonote::blobdata> &txes) { return false; } bool get_pool_transaction_hashes(std::vector<crypto::hash>& txs, bool include_unrelayed_txes = true) const { return false; } + crypto::hash get_block_id_by_height(uint64_t height) const { return crypto::null_hash; } void stop() {} }; |