diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-10-01 10:09:51 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-10-01 10:09:51 +0100 |
commit | baa3e80140b880b111984ea13e3c565846812811 (patch) | |
tree | 73a77c9715cdb15bfbdb7cd1fa326c19454d9740 /tests/core_proxy | |
parent | Merge pull request #1124 (diff) | |
download | monero-baa3e80140b880b111984ea13e3c565846812811.tar.xz |
tests: fix build after addition of cryptonote_core::get_block_sync_size
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 0f6d6571e..995b0c650 100644 --- a/tests/core_proxy/core_proxy.h +++ b/tests/core_proxy/core_proxy.h @@ -87,5 +87,6 @@ namespace tests bool prepare_handle_incoming_blocks(const std::list<cryptonote::block_complete_entry> &blocks) { return true; } bool cleanup_handle_incoming_blocks(bool force_sync = false) { return true; } uint64_t get_target_blockchain_height() const { return 1; } + size_t get_block_sync_size() const { return BLOCKS_SYNCHRONIZING_DEFAULT_COUNT; } }; } |