diff options
| author | Nathan Dorfman <ndorf@rtfm.net> | 2021-04-22 12:04:56 -0600 |
|---|---|---|
| committer | Nathan Dorfman <ndorf@rtfm.net> | 2021-04-23 09:11:45 -0600 |
| commit | c57ef7f8079fea56161537deae12fc16aa5e2efe (patch) | |
| tree | dece797b154019f496269781ab6dc95ce3ace2e7 /src/wallet/wallet2.h | |
| parent | 0a1ddc2eff854f3e932203a95b65a9f1efd60eef (diff) | |
| download | monzero-core-c57ef7f8079fea56161537deae12fc16aa5e2efe.tar.gz monzero-core-c57ef7f8079fea56161537deae12fc16aa5e2efe.tar.xz monzero-core-c57ef7f8079fea56161537deae12fc16aa5e2efe.zip | |
wallet2: Fix rescan_bc keep_ki option
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 e96a6b51c..facf9878d 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -1547,7 +1547,7 @@ private: bool is_tx_spendtime_unlocked(uint64_t unlock_time, uint64_t block_height); void hash_m_transfer(const transfer_details & transfer, crypto::hash &hash) const; - uint64_t hash_m_transfers(int64_t transfer_height, crypto::hash &hash) const; + uint64_t hash_m_transfers(boost::optional<uint64_t> transfer_height, crypto::hash &hash) const; void finish_rescan_bc_keep_key_images(uint64_t transfer_height, const crypto::hash &hash); void enable_dns(bool enable) { m_use_dns = enable; } void set_offline(bool offline = true); |
