diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-10-20 20:55:39 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-10-20 20:55:53 +0200 |
commit | 14dd279fe123d7b48baed82d9109c585839b678f (patch) | |
tree | a79e281f205a0578312aa3b7cfc9a488036b9078 /src/cryptonote_core/hardfork.h | |
parent | Merge pull request #432 (diff) | |
parent | blockchain_export can now export to a blocks.dat format (diff) | |
download | monero-14dd279fe123d7b48baed82d9109c585839b678f.tar.xz |
Merge pull request #437
b13e7f2 blockchain_export can now export to a blocks.dat format (moneromooo-monero)
11db442 bootstrap_file: do not try to create a directory with an empty name (moneromooo-monero)
03bc610 hardfork: use DB transactions when reorganizing (moneromooo-monero)
439c455 hardfork: simplify work done on reload (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/hardfork.h')
-rw-r--r-- | src/cryptonote_core/hardfork.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cryptonote_core/hardfork.h b/src/cryptonote_core/hardfork.h index 6b98b9fa1..4b2c20258 100644 --- a/src/cryptonote_core/hardfork.h +++ b/src/cryptonote_core/hardfork.h @@ -189,6 +189,9 @@ namespace cryptonote uint8_t get_effective_version(uint8_t version) const; bool add(uint8_t block_version, uint64_t height); + bool rescan_from_block_height(uint64_t height); + bool rescan_from_chain_height(uint64_t height); + private: BlockchainDB &db; |