diff options
author | Tomer Konforty <tomerk@kon40.com> | 2014-09-24 17:36:04 +0300 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-09-25 00:00:44 +0200 |
commit | 06a4578bf253cfde6f0ab352994b3aadf61ec372 (patch) | |
tree | c96190c1c5b4b112f7086a9071ac4d7f2eeb6b30 /src/cryptonote_core/checkpoints.h | |
parent | checkpoint (diff) | |
download | monero-06a4578bf253cfde6f0ab352994b3aadf61ec372.tar.xz |
Added ability to read chechpoint hashes from json file in data folder
Diffstat (limited to 'src/cryptonote_core/checkpoints.h')
-rw-r--r-- | src/cryptonote_core/checkpoints.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptonote_core/checkpoints.h b/src/cryptonote_core/checkpoints.h index 11c4b5eb7..3dee48682 100644 --- a/src/cryptonote_core/checkpoints.h +++ b/src/cryptonote_core/checkpoints.h @@ -44,6 +44,7 @@ namespace cryptonote bool check_block(uint64_t height, const crypto::hash& h) const; bool check_block(uint64_t height, const crypto::hash& h, bool& is_a_checkpoint) const; bool is_alternative_block_allowed(uint64_t blockchain_height, uint64_t block_height) const; + uint64_t get_max_height(); private: std::map<uint64_t, crypto::hash> m_points; |