diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-26 14:25:20 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-03 15:04:37 +0000 |
commit | f26ce08c8abbff51f50c13848e8899865862515d (patch) | |
tree | 890e4e775bb5c146be32e7ce4b8dbcbbff7502ec /src/wallet/wallet2.h | |
parent | Merge pull request #4697 (diff) | |
download | monero-f26ce08c8abbff51f50c13848e8899865862515d.tar.xz |
wallet: add a non destructive blockchain rescan
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 680196f01..679f1c1ad 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -782,7 +782,7 @@ namespace tools uint64_t get_blockchain_current_height() const { return m_light_wallet_blockchain_height ? m_light_wallet_blockchain_height : m_blockchain.size(); } void rescan_spent(); - void rescan_blockchain(bool refresh = true); + void rescan_blockchain(bool hard, bool refresh = true); bool is_transfer_unlocked(const transfer_details& td) const; bool is_transfer_unlocked(uint64_t unlock_time, uint64_t block_height) const; |