aboutsummaryrefslogtreecommitdiff
path: root/tests/core_proxy
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2017-02-12 23:26:02 +0200
committerRiccardo Spagni <ric@spagni.net>2017-02-12 23:26:02 +0200
commit92fe31fd44d0bfa4d22d1be3c76296102d728052 (patch)
tree450e1707799c6ac5977e36dad8f26e4fbcd6932f /tests/core_proxy
parent4e7bcad58fa682a360b3f8386eb0cd8c91577fb3 (diff)
parent5adcb5a48c08b6e9b11493d5676efd4445676bdd (diff)
downloadmonzero-core-92fe31fd44d0bfa4d22d1be3c76296102d728052.tar.gz
monzero-core-92fe31fd44d0bfa4d22d1be3c76296102d728052.tar.xz
monzero-core-92fe31fd44d0bfa4d22d1be3c76296102d728052.zip
Merge pull request #1714
5adcb5a4 tx_pool: add a debug message when adding a tx to the pool (moneromooo-monero) 9faef1f8 cryptonote_protocol: misc fluffy block fixes (moneromooo-monero)
Diffstat (limited to 'tests/core_proxy')
-rw-r--r--tests/core_proxy/core_proxy.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/core_proxy/core_proxy.h b/tests/core_proxy/core_proxy.h
index c649f51cc..09e16c4cc 100644
--- a/tests/core_proxy/core_proxy.h
+++ b/tests/core_proxy/core_proxy.h
@@ -92,5 +92,7 @@ namespace tests
bool get_testnet() const { return false; }
bool get_pool_transaction(const crypto::hash& id, cryptonote::transaction& tx) const { return false; }
bool get_blocks(uint64_t start_offset, size_t count, std::list<cryptonote::block>& blocks, std::list<cryptonote::transaction>& txs) const { return false; }
+ bool get_transactions(const std::vector<crypto::hash>& txs_ids, std::list<cryptonote::transaction>& txs, std::list<crypto::hash>& missed_txs) const { return false; }
+ bool get_block_by_hash(const crypto::hash &h, cryptonote::block &blk, bool *orphan = NULL) const { return false; }
};
}