diff options
author | Alexander Blair <snipa@jagtech.io> | 2020-12-28 11:39:01 -0800 |
---|---|---|
committer | Alexander Blair <snipa@jagtech.io> | 2020-12-28 11:39:01 -0800 |
commit | 2bccbeecb3cf931e80a2b299763f7b4b39dc9eaa (patch) | |
tree | 313ba86d0736f5c61d94311c4b5da5c4898d7440 /tests/core_proxy | |
parent | Merge pull request #7202 (diff) | |
parent | protocol: fix false positives dropping peers (diff) | |
download | monero-2bccbeecb3cf931e80a2b299763f7b4b39dc9eaa.tar.xz |
Merge pull request #7205
bcdc6c62b protocol: fix false positives dropping peers (moneromooo-monero)
Diffstat (limited to 'tests/core_proxy')
-rw-r--r-- | tests/core_proxy/core_proxy.h | 1 |
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; } }; } |