mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
* fix(cw_monero): call store() directly after commiting tx to make sure that tx key is written to cache also, store it in TransactionDescription hive box * Update lib/view_model/send/send_view_model.dart --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
15 lines
No EOL
313 B
Dart
15 lines
No EOL
313 B
Dart
|
|
class PendingTransactionDescription {
|
|
PendingTransactionDescription({
|
|
required this.amount,
|
|
required this.fee,
|
|
required this.hash,
|
|
required this.hex,
|
|
required this.pointerAddress});
|
|
|
|
final int amount;
|
|
final int fee;
|
|
final String hash;
|
|
final String hex;
|
|
final int pointerAddress;
|
|
} |