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:
parent
b984b04c70
commit
39527a5739
|
@ -148,7 +148,7 @@ QtObject {
|
|||
}
|
||||
|
||||
function checkRecentHistory() {
|
||||
walletSection.checkRecentHistory()
|
||||
walletSectionTransactions.checkRecentHistory()
|
||||
}
|
||||
|
||||
function fetchCollectionCollectiblesList(slug) {
|
||||
|
|
Loading…
Reference in New Issue