1
0
Fork 0
forked from lthn/blockchain

disabled notifications for tracking wallet

This commit is contained in:
cryptozoidberg 2021-10-16 23:08:05 +02:00
parent 2b1c3c77bb
commit 3b29f57104
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -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)
{