diff --git a/cw_lightning/lib/lightning_transaction_info.dart b/cw_lightning/lib/lightning_transaction_info.dart index 76a729617..033a6189b 100644 --- a/cw_lightning/lib/lightning_transaction_info.dart +++ b/cw_lightning/lib/lightning_transaction_info.dart @@ -80,11 +80,11 @@ class LightningTransactionInfo extends TransactionInfo { @override String amountFormatted() => - '${formatAmount(bitcoinAmountToString(amount: amount))} ${walletTypeToCryptoCurrency(type).title}'; + '${formatAmount(bitcoinAmountToLightningString(amount: amount))} ${walletTypeToCryptoCurrency(type).title}'; @override String? feeFormatted() => fee != null - ? '${formatAmount(bitcoinAmountToString(amount: fee!))} ${walletTypeToCryptoCurrency(type).title}' + ? '${formatAmount(bitcoinAmountToLightningString(amount: fee!))} ${walletTypeToCryptoCurrency(type).title}' : ''; @override