From 6869294dcba28a23911bd41c4552487dd6303ecf Mon Sep 17 00:00:00 2001 From: gg Date: Tue, 20 Jan 2026 04:24:54 -0500 Subject: [PATCH] pause mempool scan and set wallet status paused when checkbox unchecked --- src/libwalletqt/Wallet.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libwalletqt/Wallet.cpp b/src/libwalletqt/Wallet.cpp index a10d503a..47bd1e3d 100644 --- a/src/libwalletqt/Wallet.cpp +++ b/src/libwalletqt/Wallet.cpp @@ -723,6 +723,8 @@ void Wallet::setScanMempoolWhenPaused(bool enabled) { } else if (!enabled && m_syncPaused) { m_wallet2->set_offline(true); + setConnectionStatus(ConnectionStatus_Disconnected); + pauseRefresh(); } } -- 2.52.0