mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
7 lines
128 B
Dart
7 lines
128 B
Dart
|
mixin PendingTransaction {
|
||
|
String get id;
|
||
|
String get amountFormatted;
|
||
|
String get feeFormatted;
|
||
|
|
||
|
Future<void> commit();
|
||
|
}
|