fix monero.com block explorer link (#3174)
* fix monero.com block explorer link * Rename transaction ID variable for consistency [skip ci] --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
malik1004x committed
Apr 13, 2026 at 18:46 UTC
5f42b393b40cfe9c626e0076b5f367bbccac31cd
1 file changed
+1
-1
lib/view_model/transaction_details_view_model.dart
+1
-1
@@ -397,7 +397,7 @@ abstract class TransactionDetailsViewModelBase with Store {
397
398
String get _explorerUrl {
399
400
- final txId = transactionInfo.id;
400
+ final txId = transactionInfo.txHash;
401
if (wallet.chainId != null) {
402
final explorerUrl = evm!.getExplorerUrlForChainId(wallet.chainId!);
403
if (explorerUrl != null) return '$explorerUrl/tx/${txId}';