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/unit_tests | |
| parent | 1df79ae3aae0180d09f4bb9fa19d61a38ac28278 (diff) | |
| parent | 054b4c7f412013e33c80efa8e0f0f33944572a11 (diff) | |
| download | monzero-core-096e2135ddebbcbaaa2d8b2362849da678d9a28c.tar.gz monzero-core-096e2135ddebbcbaaa2d8b2362849da678d9a28c.tar.xz monzero-core-096e2135ddebbcbaaa2d8b2362849da678d9a28c.zip | |
Merge pull request #6214
054b4c7 protocol: request txpool contents when synced (moneromooo-monero)
Diffstat (limited to 'tests/unit_tests')
| -rw-r--r-- | tests/unit_tests/node_server.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unit_tests/node_server.cpp b/tests/unit_tests/node_server.cpp index bda606e1a..b656c4858 100644 --- a/tests/unit_tests/node_server.cpp +++ b/tests/unit_tests/node_server.cpp @@ -90,6 +90,8 @@ public: bool prune_blockchain(uint32_t pruning_seed = 0) { return true; } bool is_within_compiled_block_hash_area(uint64_t height) const { return false; } 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; } void stop() {} }; |
