mirror of
https://github.com/monero-project/monero.git
synced 2025-08-19 05:48:01 -04:00
wallet: do not check txpool in background mode
This avoids the constant message about needed to run refresh to enter a password. Also mention the txpool when asking for the password if the reason is a pool tx.
This commit is contained in:
parent
42abea7f72
commit
8258a9e7a9
3 changed files with 11 additions and 10 deletions
|
@ -7770,8 +7770,9 @@ void simple_wallet::wallet_idle_thread()
|
|||
try
|
||||
{
|
||||
uint64_t fetched_blocks;
|
||||
bool received_money;
|
||||
if (try_connect_to_daemon(true))
|
||||
m_wallet->refresh(m_wallet->is_trusted_daemon(), 0, fetched_blocks);
|
||||
m_wallet->refresh(m_wallet->is_trusted_daemon(), 0, fetched_blocks, received_money, false); // don't check the pool in background mode
|
||||
}
|
||||
catch(...) {}
|
||||
m_auto_refresh_refreshing = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue