core: add get_earliest_ideal_height_for_version()

This commit is contained in:
stoffu 2018-03-20 20:30:09 +09:00
parent 5710edf040
commit 3b941befae
No known key found for this signature in database
GPG key ID: 41DAB8343A9EC012
5 changed files with 21 additions and 0 deletions

View file

@ -99,6 +99,7 @@ namespace tests
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(uint64_t height) const { return 0; }
uint8_t get_hard_fork_version(uint64_t height) const { return 0; }
uint64_t get_earliest_ideal_height_for_version(uint8_t version) const { return 0; }
cryptonote::difficulty_type get_block_cumulative_difficulty(uint64_t height) const { return 0; }
bool fluffy_blocks_enabled() const { return false; }
uint64_t prevalidate_block_hashes(uint64_t height, const std::list<crypto::hash> &hashes) { return 0; }