diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-12-19 14:52:30 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-12-19 14:52:30 +0000 |
commit | 8ea7af1ba3ea74be52893a38ab9c7d5afdc90926 (patch) | |
tree | 2b98b4f9c06f39097c162d24386a55bc1e67ea07 /src/cryptonote_core/hardfork.h | |
parent | epee: make log macros behave like statements (diff) | |
download | monero-8ea7af1ba3ea74be52893a38ab9c7d5afdc90926.tar.xz |
Allow the wallet to access hard fork information
And make it change behavior slightly when close/after first hard fork
Diffstat (limited to 'src/cryptonote_core/hardfork.h')
-rw-r--r-- | src/cryptonote_core/hardfork.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/cryptonote_core/hardfork.h b/src/cryptonote_core/hardfork.h index 6d2a3c55b..d2f701799 100644 --- a/src/cryptonote_core/hardfork.h +++ b/src/cryptonote_core/hardfork.h @@ -184,6 +184,11 @@ namespace cryptonote uint8_t get_current_version() const; /** + * @brief returns the earliest block a given version may activate + */ + uint64_t get_earliest_ideal_height_for_version(uint8_t version) const; + + /** * @brief returns information about current voting state * * returns true if the given version is enabled (ie, the current version @@ -193,8 +198,9 @@ namespace cryptonote * @param window the number of blocks considered in voting * @param votes number of votes for next version * @param threshold number of votes needed to switch to next version + * @param earliest_height earliest height at which the version can take effect */ - bool get_voting_info(uint8_t version, uint32_t &window, uint32_t &votes, uint32_t &threshold, uint8_t &voting) const; + bool get_voting_info(uint8_t version, uint32_t &window, uint32_t &votes, uint32_t &threshold, uint64_t &earliest_height, uint8_t &voting) const; /** * @brief returns the size of the voting window in blocks |