You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cake_wallet/lib/src/domain/common/pending_transaction.dart

26 lines
960 B

import 'package:flutter/foundation.dart';
import 'package:cw_monero/transaction_history.dart' as transaction_history;
import 'package:cw_monero/structs/pending_transaction.dart';
import 'package:cake_wallet/src/domain/monero/monero_amount_format.dart';
class PendingTransaction {
PendingTransaction(
{@required this.amount, @required this.fee, @required this.hash});
PendingTransaction.fromTransactionDescription(
PendingTransactionDescription transactionDescription)
: amount = moneroAmountToString(amount: transactionDescription.amount),
fee = moneroAmountToString(amount: transactionDescription.fee),
hash = transactionDescription.hash,
_pointerAddress = transactionDescription.pointerAddress;
final String amount;
final String fee;
final String hash;
int _pointerAddress;
Future<void> commit() async => transaction_history
.commitTransactionFromPointerAddress(address: _pointerAddress);
}