diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-12-07 13:56:53 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-12-07 13:57:26 +0000 |
| commit | a6a2ad6cacb23c39dbaa6b02ef6b80cfe1ffa859 (patch) | |
| tree | a00422365894c419ac4f483aa75570ae896b2825 | |
| parent | 411f1b0ee30f1d424621eb856841dc82d2f161c2 (diff) | |
| download | monzero-core-a6a2ad6cacb23c39dbaa6b02ef6b80cfe1ffa859.tar.gz monzero-core-a6a2ad6cacb23c39dbaa6b02ef6b80cfe1ffa859.tar.xz monzero-core-a6a2ad6cacb23c39dbaa6b02ef6b80cfe1ffa859.zip | |
simplewallet: set manual refresh mode in rescan_bc
This ensures we get asked for the password if needed
| -rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index ea8f6f2f5..3f5eec691 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -8786,6 +8786,8 @@ bool simple_wallet::rescan_blockchain(const std::vector<std::string> &args_) } } + m_in_manual_refresh.store(true, std::memory_order_relaxed); + epee::misc_utils::auto_scope_leave_caller scope_exit_handler = epee::misc_utils::create_scope_leave_handler([&](){m_in_manual_refresh.store(false, std::memory_order_relaxed);}); return refresh_main(start_height, reset_type, true); } //---------------------------------------------------------------------------------------------------- |
