mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
9 lines
No EOL
178 B
Dart
9 lines
No EOL
178 B
Dart
mixin PendingTransaction {
|
|
String get id;
|
|
String get amountFormatted;
|
|
String get feeFormatted;
|
|
String get hex;
|
|
int? get outputCount => null;
|
|
|
|
Future<void> commit();
|
|
} |