From 64db32dca9693cf153e7789df0887604c5437399 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Sat, 14 Nov 2020 12:01:45 +0100 Subject: [PATCH] Wallet: do not emit updated on refresh --- src/libwalletqt/Wallet.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libwalletqt/Wallet.cpp b/src/libwalletqt/Wallet.cpp index 77fea34..31ab716 100644 --- a/src/libwalletqt/Wallet.cpp +++ b/src/libwalletqt/Wallet.cpp @@ -633,8 +633,7 @@ bool Wallet::refresh(bool historyAndSubaddresses /* = true */) m_subaddress->refresh(currentSubaddressAccount()); m_subaddressAccount->getAll(); } - if (result) - emit updated(); + return result; } }