diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-08-16 21:19:53 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-08-17 13:11:52 +0100 |
commit | 5a283078ec3cf276dd085219f4ead51ced969224 (patch) | |
tree | f3b1d4a2ea69fd13941127e7d657ffd731b0429f /tests/core_proxy | |
parent | cryptonote_protocol: kick idle synchronizing peers (diff) | |
download | monero-5a283078ec3cf276dd085219f4ead51ced969224.tar.xz |
cryptonote_protocol: large block sync size before v4
Diffstat (limited to 'tests/core_proxy')
-rw-r--r-- | tests/core_proxy/core_proxy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core_proxy/core_proxy.h b/tests/core_proxy/core_proxy.h index b7d5725f0..6df7e7fc9 100644 --- a/tests/core_proxy/core_proxy.h +++ b/tests/core_proxy/core_proxy.h @@ -88,7 +88,7 @@ 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; } + size_t get_block_sync_size(uint64_t height) 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::blobdata& tx_blob) const { return false; } |