diff options
| author | tobtoht <tob@featherwallet.org> | 2026-06-17 18:42:20 +0000 |
|---|---|---|
| committer | tobtoht <tob@featherwallet.org> | 2026-06-17 18:42:20 +0000 |
| commit | a003cb75b6416488d0a448198e6de03211ae1a67 (patch) | |
| tree | a9d015d8bee2cb2dff017e7c1b51295ae47c698a /src/libwalletqt | |
| parent | fdecbd3ec5e928143e5f61c141fbfadfa29dcb27 (diff) | |
| parent | 16276615302f908f0c0f800699b877ba787c136c (diff) | |
| download | monzero-gui-a003cb75b6416488d0a448198e6de03211ae1a67.tar.gz monzero-gui-a003cb75b6416488d0a448198e6de03211ae1a67.tar.xz monzero-gui-a003cb75b6416488d0a448198e6de03211ae1a67.zip | |
Merge pull request #4602
1627661 libwalletqt: capture background sync password by value (selsta)
ACKs: plowsof
Diffstat (limited to 'src/libwalletqt')
| -rw-r--r-- | src/libwalletqt/Wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libwalletqt/Wallet.cpp b/src/libwalletqt/Wallet.cpp index 298db6eb..bc086a16 100644 --- a/src/libwalletqt/Wallet.cpp +++ b/src/libwalletqt/Wallet.cpp @@ -536,7 +536,7 @@ void Wallet::setupBackgroundSync(const Wallet::BackgroundSyncType background_syn pauseRefresh(); // run inside scheduler because of lag when stopping/starting refresh - m_scheduler.run([this, refreshEnabled, background_sync_type, &wallet_password] { + m_scheduler.run([this, refreshEnabled, background_sync_type, wallet_password] { m_walletImpl->setupBackgroundSync( static_cast<Monero::Wallet::BackgroundSyncType>(background_sync_type), wallet_password.toStdString(), |
