aboutsummaryrefslogtreecommitdiff
path: root/tests/core_proxy
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2020-12-27 14:13:26 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2020-12-27 14:42:59 +0000
commit8c8f3d73b5f67df77739c3786fb924e62df8ea36 (patch)
tree717b492cd72b38ff0427788b7da3cddf007c6e71 /tests/core_proxy
parentMerge pull request #7198 (diff)
downloadmonero-8c8f3d73b5f67df77739c3786fb924e62df8ea36.tar.xz
protocol: fix false positives dropping peers
it'd trigger on reorgs
Diffstat (limited to 'tests/core_proxy')
-rw-r--r--tests/core_proxy/core_proxy.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/core_proxy/core_proxy.h b/tests/core_proxy/core_proxy.h
index ecfcc18ae..ebc3a89c2 100644
--- a/tests/core_proxy/core_proxy.h
+++ b/tests/core_proxy/core_proxy.h
@@ -112,5 +112,6 @@ namespace tests
bool prune_blockchain(uint32_t pruning_seed) const { return true; }
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; }
};
}