diff options
author | Thaer Khawaja <thaer.khawaja@gmail.com> | 2018-04-15 19:02:26 -0700 |
---|---|---|
committer | Thaer Khawaja <thaer.khawaja@gmail.com> | 2018-04-22 17:26:44 -0700 |
commit | dad10775778ef5e4f7ab99d1cda653728f438540 (patch) | |
tree | e784e71564600ccd3de0789b75c5c4e6bd4062d4 /tests/core_proxy | |
parent | Merge pull request #3670 (diff) | |
download | monero-dad10775778ef5e4f7ab99d1cda653728f438540.tar.xz |
Only log an error if fork version is higher AND is not known.
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 59f8d5239..6684c134c 100644 --- a/tests/core_proxy/core_proxy.h +++ b/tests/core_proxy/core_proxy.h @@ -97,6 +97,7 @@ namespace tests bool get_blocks(uint64_t start_offset, size_t count, std::list<std::pair<cryptonote::blobdata, cryptonote::block>>& blocks, std::list<cryptonote::blobdata>& 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; } + uint8_t get_ideal_hard_fork_version() const { return 0; } uint8_t get_ideal_hard_fork_version(uint64_t height) const { return 0; } uint8_t get_hard_fork_version(uint64_t height) const { return 0; } cryptonote::difficulty_type get_block_cumulative_difficulty(uint64_t height) const { return 0; } |