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/unit_tests/ban.cpp | |
parent | cryptonote_protocol: kick idle synchronizing peers (diff) | |
download | monero-5a283078ec3cf276dd085219f4ead51ced969224.tar.xz |
cryptonote_protocol: large block sync size before v4
Diffstat (limited to '')
-rw-r--r-- | tests/unit_tests/ban.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/ban.cpp b/tests/unit_tests/ban.cpp index 6fc8b83dd..6a1a37fe3 100644 --- a/tests/unit_tests/ban.cpp +++ b/tests/unit_tests/ban.cpp @@ -65,7 +65,7 @@ public: 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; } |