mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-19 09:15:11 +00:00
76283cd82e
Use a mock libwallet for now.
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;
|
|
}
|