fix(wallet): fix never fetching transactions

The RootStore was calling checkRecentHistory on the wallet section View
instead of the transaction View.

Still the workflow is broken due to the 20 minutes timer that calls
the checkRecentHistory and hangs the the main thread (UI) for a long time

Fixes: #7266
This commit is contained in:
Stefan 2022-09-23 13:44:24 +02:00 committed by Stefan Dunca
parent b984b04c70
commit 39527a5739
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ QtObject {
}
function checkRecentHistory() {
walletSection.checkRecentHistory()
walletSectionTransactions.checkRecentHistory()
}
function fetchCollectionCollectiblesList(slug) {