Merge pull request #4068

29254fc api/wallet: add missing arg to wallet2::refresh() (stoffu)
This commit is contained in:
luigi1111
2018-06-27 21:23:50 -05:00

View File

@@ -1966,7 +1966,7 @@ void WalletImpl::doRefresh()
// Syncing daemon and refreshing wallet simultaneously is very resource intensive.
// Disable refresh if wallet is disconnected or daemon isn't synced.
if (m_wallet->light_wallet() || daemonSynced()) {
m_wallet->refresh();
m_wallet->refresh(trustedDaemon());
if (!m_synchronized) {
m_synchronized = true;
}