aboutsummaryrefslogtreecommitdiff
path: root/tests/core_proxy
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-11-11 18:16:13 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-11-11 18:17:16 +0000
commit2078cb6f2f09da6fa5d8b2ff9d83e849cc734090 (patch)
treed0d61324515616330d4b4b8758595d6f59a514c5 /tests/core_proxy
parentMerge pull request #1316 (diff)
downloadmonero-2078cb6f2f09da6fa5d8b2ff9d83e849cc734090.tar.xz
tests: fix tests builds after fluffy blocks merge
Diffstat (limited to 'tests/core_proxy')
-rw-r--r--tests/core_proxy/core_proxy.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/core_proxy/core_proxy.h b/tests/core_proxy/core_proxy.h
index a265ef1ce..31e876d06 100644
--- a/tests/core_proxy/core_proxy.h
+++ b/tests/core_proxy/core_proxy.h
@@ -89,5 +89,8 @@ namespace tests
uint64_t get_target_blockchain_height() const { return 1; }
size_t get_block_sync_size() const { return BLOCKS_SYNCHRONIZING_DEFAULT_COUNT; }
virtual void on_transaction_relayed(const cryptonote::blobdata& tx) {}
+ 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; }
};
}