mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
fix: Tentative fix for transaction history items overlap across wallet types (#1864)
This commit is contained in:
parent
6e8cc9c39e
commit
699f591113
5 changed files with 21 additions and 5 deletions
|
@ -34,7 +34,10 @@ abstract class EVMChainTransactionHistoryBase
|
|||
|
||||
//! Common methods across all child classes
|
||||
|
||||
Future<void> init() async => await _load();
|
||||
Future<void> init() async {
|
||||
clear();
|
||||
await _load();
|
||||
}
|
||||
|
||||
@override
|
||||
Future<void> save() async {
|
||||
|
@ -81,6 +84,7 @@ abstract class EVMChainTransactionHistoryBase
|
|||
_update(tx);
|
||||
}
|
||||
}
|
||||
print('doneee');
|
||||
} catch (e) {
|
||||
log(e.toString());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue