mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-19 09:15:11 +00:00
38 lines
1.1 KiB
Dart
38 lines
1.1 KiB
Dart
import 'package:mobx/mobx.dart';
|
|
import 'package:cw_core/transaction_info.dart';
|
|
import 'package:cw_core/transaction_history.dart';
|
|
|
|
class DecredTransactionHistory extends TransactionHistoryBase<TransactionInfo> {
|
|
DecredTransactionHistory() {
|
|
transactions = ObservableMap<String, TransactionInfo>();
|
|
}
|
|
|
|
Future<void> init() async {}
|
|
|
|
@override
|
|
void addOne(TransactionInfo transaction) =>
|
|
transactions[transaction.id] = transaction;
|
|
|
|
@override
|
|
void addMany(Map<String, TransactionInfo> transactions) =>
|
|
this.transactions.addAll(transactions);
|
|
|
|
@override
|
|
Future<void> save() async {}
|
|
|
|
Future<void> changePassword(String password) async {}
|
|
|
|
// update returns true if a known transaction that is not pending was found.
|
|
bool update(Map<String, TransactionInfo> txs) {
|
|
var foundOldTx = false;
|
|
txs.forEach((_, tx) {
|
|
if (!this.transactions.containsKey(tx.id) ||
|
|
this.transactions[tx.id]!.isPending) {
|
|
this.transactions[tx.id] = tx;
|
|
} else {
|
|
foundOldTx = true;
|
|
}
|
|
});
|
|
return foundOldTx;
|
|
}
|
|
}
|