From b3e346ddfd1ea40639ce7b4caa639a13f2a64181 Mon Sep 17 00:00:00 2001
From: Matthew Fosse <matt@fosse.co>
Date: Mon, 23 Sep 2024 09:55:27 -0700
Subject: [PATCH 1/2] [skip ci] fix tag spacing

---
 lib/src/screens/dashboard/widgets/transaction_raw.dart | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/src/screens/dashboard/widgets/transaction_raw.dart b/lib/src/screens/dashboard/widgets/transaction_raw.dart
index 89be273ff..b18131f3d 100644
--- a/lib/src/screens/dashboard/widgets/transaction_raw.dart
+++ b/lib/src/screens/dashboard/widgets/transaction_raw.dart
@@ -60,7 +60,7 @@ class TransactionRow extends StatelessWidget {
                               fontWeight: FontWeight.w500,
                               color: Theme.of(context).extension<DashboardPageTheme>()!.textColor,
                             )),
-                        ...tags.map((tag) => TxTag(tag: tag)).toList(),
+                        ...tags.map((tag) => Row(children: [SizedBox(width: 8), TxTag(tag: tag)])),
                       ],
                     ),
                     Text(formattedAmount,

From 8d7bad37f4251020ca66ac6db14e89a3f7fb6b36 Mon Sep 17 00:00:00 2001
From: Matthew Fosse <matt@fosse.co>
Date: Mon, 23 Sep 2024 10:07:39 -0700
Subject: [PATCH 2/2] fix transaction history not showing up

---
 cw_bitcoin/lib/litecoin_wallet.dart | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/cw_bitcoin/lib/litecoin_wallet.dart b/cw_bitcoin/lib/litecoin_wallet.dart
index 6aee77ec9..533fb346b 100644
--- a/cw_bitcoin/lib/litecoin_wallet.dart
+++ b/cw_bitcoin/lib/litecoin_wallet.dart
@@ -254,6 +254,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
     if (!mwebEnabled) {
       try {
         await updateAllUnspents();
+        await updateTransactions();
         await updateBalance();
         syncStatus = SyncedSyncStatus();
       } catch (e, s) {
@@ -909,7 +910,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
           }).toList())
           .toHex();
       tx.outputAddresses = resp.outputId;
-      
+
       return tx
         ..addListener((transaction) async {
           final addresses = <String>{};