diff --git a/lib/ui/ui_helpers.dart b/lib/ui/ui_helpers.dart
index ab6dca85e41e2cd2d56b8a9ba20c0456ab334681..58f9d9df1c031388260f0b9101ec2903fa6e42ad 100644
--- a/lib/ui/ui_helpers.dart
+++ b/lib/ui/ui_helpers.dart
@@ -23,6 +23,7 @@ import '../data/models/node_list_cubit.dart';
 import '../g1/api.dart';
 import '../g1/currency.dart';
 import '../shared_prefs_helper.dart';
+import 'logger.dart';
 import 'notification_controller.dart';
 import 'widgets/first_screen/circular_icon.dart';
 
@@ -258,7 +259,7 @@ void initGetItAll() {
   }
 }
 
-Future<void> fetchTransactionsFromBackground([bool init = false]) async {
+Future<void> fetchTransactionsFromBackground([bool init = true]) async {
   if (init) {
     await hydratedInit();
     if (SharedPreferencesHelper().cards.isEmpty) {
@@ -277,12 +278,14 @@ Future<void> fetchTransactionsFromBackground([bool init = false]) async {
       }
     }
   }
+  loggerDev('Initialized background context');
   final GetIt getIt = GetIt.instance;
   final AppCubit appCubit = getIt.get<AppCubit>();
   final MultiWalletTransactionCubit transCubit =
       getIt.get<MultiWalletTransactionCubit>();
   final NodeListCubit nodeListCubit = getIt.get<NodeListCubit>();
   for (final CesiumCard card in SharedPreferencesHelper().cards) {
+    loggerDev('Fetching transactions for ${card.pubKey} in background');
     transCubit.fetchTransactions(nodeListCubit, appCubit, pubKey: card.pubKey);
   }
   if (inDevelopment) {