aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.h
diff options
context:
space:
mode:
authorNathan Dorfman <ndorf@rtfm.net>2021-04-22 12:04:56 -0600
committerNathan Dorfman <ndorf@rtfm.net>2021-04-22 16:15:01 -0600
commit70c5c8167037db9211147de32a6b9bee922de653 (patch)
treed7f059cfb5ac9c8e82ded33caae9b13d9433eb77 /src/wallet/wallet2.h
parentMerge pull request #7657 (diff)
downloadmonero-70c5c8167037db9211147de32a6b9bee922de653.tar.xz
wallet2: Fix rescan_bc keep_ki option
Diffstat (limited to '')
-rw-r--r--src/wallet/wallet2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h
index 322f3b104..f75e0b813 100644
--- a/src/wallet/wallet2.h
+++ b/src/wallet/wallet2.h
@@ -1542,7 +1542,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);