mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-01 22:40:26 +00:00
11 lines
331 B
Dart
11 lines
331 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;
|
|
}
|