mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
Fix for transaction details for electrum transactions
This commit is contained in:
parent
c1a830ea27
commit
01735a998c
1 changed files with 3 additions and 3 deletions
|
@ -32,11 +32,11 @@ abstract class TransactionDetailsViewModelBase with Store {
|
|||
|
||||
final dateFormat = DateFormatter.withCurrentLocal();
|
||||
final tx = transactionInfo;
|
||||
|
||||
if (wallet.type == WalletType.monero) {
|
||||
final key = tx.additionalInfo['key'] as String;
|
||||
final accountIndex = tx.additionalInfo['accountIndex'] as int;
|
||||
final addressIndex = tx.additionalInfo['addressIndex'] as int;
|
||||
|
||||
if (wallet.type == WalletType.monero) {
|
||||
final _items = [
|
||||
StandartListItem(
|
||||
title: S.current.transaction_details_transaction_id, value: tx.id),
|
||||
|
|
Loading…
Reference in a new issue