diff options
author | Howard Chu <hyc@symas.com> | 2016-01-15 14:00:58 +0000 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2016-01-15 17:26:19 +0000 |
commit | 30f92f5630bbc7507708275a29a9ae7acf633a5b (patch) | |
tree | 56cd61f113b9bed7eeef4b84729cb4cab356fc80 /src/blockchain_db/blockchain_db.h | |
parent | Merge pull request #612 (diff) | |
download | monero-30f92f5630bbc7507708275a29a9ae7acf633a5b.tar.xz |
Fix hf when import with verify off
Delete the hf tables, so the next open will rescan and regenerate
Diffstat (limited to 'src/blockchain_db/blockchain_db.h')
-rw-r--r-- | src/blockchain_db/blockchain_db.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/blockchain_db/blockchain_db.h b/src/blockchain_db/blockchain_db.h index b3ee9885a..1f4ee21c2 100644 --- a/src/blockchain_db/blockchain_db.h +++ b/src/blockchain_db/blockchain_db.h @@ -502,6 +502,7 @@ public: virtual uint64_t get_hard_fork_starting_height(uint8_t version) const = 0; virtual void set_hard_fork_version(uint64_t height, uint8_t version) = 0; virtual uint8_t get_hard_fork_version(uint64_t height) const = 0; + virtual void check_hard_fork_info() = 0; virtual bool is_read_only() const = 0; |