fix transaction history not showing up

This commit is contained in:
Matthew Fosse 2024-09-23 10:07:39 -07:00
parent b3e346ddfd
commit 8d7bad37f4

View file

@ -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>{};