mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
3a391f10a3
* fix: enhance regex, fix multiline * feat: improve scan msg, fix missing txs, use date api * feat: node fixes, enhance send modal, TX list tag & filter, refactors * fix: continuous scanning * fix: missing close * fix: resubscribe tweaks * feat: use mempool api setting toggle * handle any failure of height API and fallback to the old method [skip ci] --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
18 lines
340 B
Dart
18 lines
340 B
Dart
class PendingChange {
|
|
final String address;
|
|
final String amount;
|
|
|
|
PendingChange(this.address, this.amount);
|
|
}
|
|
|
|
mixin PendingTransaction {
|
|
String get id;
|
|
String get amountFormatted;
|
|
String get feeFormatted;
|
|
String? feeRate;
|
|
String get hex;
|
|
int? get outputCount => null;
|
|
PendingChange? change;
|
|
|
|
Future<void> commit();
|
|
}
|