From 39527a5739ed095d1276cafbbf8578008e018ce9 Mon Sep 17 00:00:00 2001 From: Stefan Date: Fri, 23 Sep 2022 13:44:24 +0200 Subject: [PATCH] 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 --- ui/app/AppLayouts/Wallet/stores/RootStore.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Wallet/stores/RootStore.qml b/ui/app/AppLayouts/Wallet/stores/RootStore.qml index 7d78810a1c..ed51ad73b5 100644 --- a/ui/app/AppLayouts/Wallet/stores/RootStore.qml +++ b/ui/app/AppLayouts/Wallet/stores/RootStore.qml @@ -148,7 +148,7 @@ QtObject { } function checkRecentHistory() { - walletSection.checkRecentHistory() + walletSectionTransactions.checkRecentHistory() } function fetchCollectionCollectiblesList(slug) {