diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-03-31 13:32:55 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-03-31 13:32:55 -0500 |
commit | 096e2135ddebbcbaaa2d8b2362849da678d9a28c (patch) | |
tree | 302adcbd0460ffc68d560822899273133bc8342f /tests/core_proxy | |
parent | Merge pull request #6407 (diff) | |
parent | protocol: request txpool contents when synced (diff) | |
download | monero-096e2135ddebbcbaaa2d8b2362849da678d9a28c.tar.xz |
Merge pull request #6214
054b4c7 protocol: request txpool contents when synced (moneromooo-monero)
Diffstat (limited to 'tests/core_proxy')
-rw-r--r-- | tests/core_proxy/core_proxy.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/core_proxy/core_proxy.h b/tests/core_proxy/core_proxy.h index aa99699de..aad1bc962 100644 --- a/tests/core_proxy/core_proxy.h +++ b/tests/core_proxy/core_proxy.h @@ -109,5 +109,7 @@ namespace tests bool pad_transactions() const { return false; } uint32_t get_blockchain_pruning_seed() const { return 0; } 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; } }; } |