From 3b29f57104908df42466ca68c2f16d1e6504be8b Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Sat, 16 Oct 2021 23:08:05 +0200 Subject: [PATCH] disabled notifications for tracking wallet --- src/wallet/wallets_manager.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/wallet/wallets_manager.cpp b/src/wallet/wallets_manager.cpp index 6155b4b0..aafb71d2 100644 --- a/src/wallet/wallets_manager.cpp +++ b/src/wallet/wallets_manager.cpp @@ -1802,7 +1802,10 @@ void wallets_manager::on_transfer2(size_t wallet_id, const tools::wallet_public: GET_WALLET_OPTIONS_BY_ID_VOID_RET(wallet_id, w); tei.is_wallet_in_sync_process = w.long_refresh_in_progress; - m_pview->money_transfer(tei); + if (!(w.w->get()->is_watch_only())) + { + m_pview->money_transfer(tei); + } } void wallets_manager::on_pos_block_found(size_t wallet_id, const currency::block& b) {