2020-09-21 11:50:26 +00:00
|
|
|
import 'package:cake_wallet/entities/transaction_creation_credentials.dart';
|
2021-01-27 13:51:51 +00:00
|
|
|
import 'package:cake_wallet/entities/monero_transaction_priority.dart';
|
2021-08-10 14:52:35 +00:00
|
|
|
import 'package:cake_wallet/view_model/send/output.dart';
|
2020-01-04 19:31:52 +00:00
|
|
|
|
|
|
|
class MoneroTransactionCreationCredentials
|
|
|
|
extends TransactionCreationCredentials {
|
2021-08-10 14:52:35 +00:00
|
|
|
MoneroTransactionCreationCredentials({this.outputs, this.priority});
|
2020-01-08 12:26:34 +00:00
|
|
|
|
2021-08-10 14:52:35 +00:00
|
|
|
final List<Output> outputs;
|
2021-01-27 13:51:51 +00:00
|
|
|
final MoneroTransactionPriority priority;
|
2020-01-08 12:26:34 +00:00
|
|
|
}
|