]> Nutra Git (v1) - gamesguru/feather.git/commitdiff
wip
authorgg <chown_tee@proton.me>
Mon, 19 Jan 2026 21:17:41 +0000 (16:17 -0500)
committergg <chown_tee@proton.me>
Mon, 19 Jan 2026 21:17:41 +0000 (16:17 -0500)
src/libwalletqt/Wallet.cpp
src/libwalletqt/Wallet.h

index d2ec3d5a27aa7992ba59419cf74e22b095937f1b..192868694321103ea0c7bb150a8bfe93964c5d07 100644 (file)
@@ -1767,6 +1767,12 @@ void Wallet::scanMempool() {
         if (!process_txs.empty()) {
             m_wallet2->process_pool_state(process_txs);
         }
+        
+        // Refresh models so the UI picks up the new transaction(s)
+        if (m_history) m_history->refresh();
+        if (m_coins) m_coins->refresh();
+        if (m_subaddress) m_subaddress->refresh();
+        
         emit updated();
     } catch (const std::exception &e) {
         qWarning() << "Failed to scan mempool:" << e.what();
index ee9a27a93ac992fa07e8a2a4f0b72ffae720e1c9..19d4e9d3bbef6d53e19cfae4198e54619b9a61fe 100644 (file)
@@ -240,7 +240,6 @@ public:
     quint64 daemonBlockChainTargetHeight() const;
 
     void syncStatusUpdated(quint64 height, quint64 target);
-    void setSyncPaused(bool paused);
     Q_INVOKABLE void skipToTip();
     Q_INVOKABLE void syncDateRange(const QDate &start, const QDate &end);