mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
11 lines
325 B
Dart
11 lines
325 B
Dart
|
import 'package:cw_decred/transaction_priority.dart';
|
||
|
import 'package:cw_core/output_info.dart';
|
||
|
|
||
|
class DecredTransactionCredentials {
|
||
|
DecredTransactionCredentials(this.outputs, {required this.priority, this.feeRate});
|
||
|
|
||
|
final List<OutputInfo> outputs;
|
||
|
final DecredTransactionPriority? priority;
|
||
|
final int? feeRate;
|
||
|
}
|