mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
28 lines
1 KiB
Dart
28 lines
1 KiB
Dart
import 'package:cw_monero/structs/pending_transaction.dart';
|
|
import 'package:cw_monero/transaction_history.dart'
|
|
as monero_transaction_history;
|
|
import 'package:cake_wallet/entities/crypto_currency.dart';
|
|
import 'package:cake_wallet/core/amount_converter.dart';
|
|
import 'package:cake_wallet/core/pending_transaction.dart';
|
|
|
|
class PendingMoneroTransaction with PendingTransaction {
|
|
PendingMoneroTransaction(this.pendingTransactionDescription);
|
|
|
|
final PendingTransactionDescription pendingTransactionDescription;
|
|
|
|
@override
|
|
String get id => pendingTransactionDescription.hash;
|
|
|
|
@override
|
|
String get amountFormatted => AmountConverter.amountIntToString(
|
|
CryptoCurrency.xmr, pendingTransactionDescription.amount);
|
|
|
|
@override
|
|
String get feeFormatted => AmountConverter.amountIntToString(
|
|
CryptoCurrency.xmr, pendingTransactionDescription.fee);
|
|
|
|
@override
|
|
Future<void> commit() async =>
|
|
monero_transaction_history.commitTransactionFromPointerAddress(
|
|
address: pendingTransactionDescription.pointerAddress);
|
|
}
|