mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-19 17:25:02 +00:00
12 lines
331 B
Dart
12 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;
|
||
|
}
|