diff --git a/cw_bitcoin/lib/electrum_wallet.dart b/cw_bitcoin/lib/electrum_wallet.dart
index 38fded49e..276d192b9 100644
--- a/cw_bitcoin/lib/electrum_wallet.dart
+++ b/cw_bitcoin/lib/electrum_wallet.dart
@@ -1168,7 +1168,7 @@ abstract class ElectrumWalletBase
   Future<void> updateUnspent() async {
     await updateAllUnspents();
 
-    if (unspentCoinsInfo.isEmpty) {
+    if (unspentCoinsInfo.length != unspentCoins.length) {
       unspentCoins.forEach((coin) => addCoinInfo(coin));
       return;
     }
diff --git a/cw_bitcoin/lib/litecoin_wallet.dart b/cw_bitcoin/lib/litecoin_wallet.dart
index 22fb8ebc7..684562eaf 100644
--- a/cw_bitcoin/lib/litecoin_wallet.dart
+++ b/cw_bitcoin/lib/litecoin_wallet.dart
@@ -205,6 +205,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
       }
     });
     processMwebUtxos();
+    updateUnspent();
   }
 
   @action
@@ -514,6 +515,12 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
       });
     }
 
+    print(unspentCoins);
+    print(updatedUnspentCoins);
+    print(updatedUnspentCoins.length);
+
+    // print(updatedUnspentCoins[2].address);
+
     unspentCoins = updatedUnspentCoins;
   }
 
@@ -575,6 +582,8 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
       }
     }
 
+    await updateUnspent();
+
     return ElectrumBalance(confirmed: confirmed, unconfirmed: unconfirmed, frozen: balance.frozen);
   }