mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-04-02 20:49:10 +00:00
fix transaction history not showing up
This commit is contained in:
parent
b3e346ddfd
commit
8d7bad37f4
1 changed files with 2 additions and 1 deletions
|
@ -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>{};
|
||||
|
|
Loading…
Reference in a new issue