diff --git a/core/src/main/java/bisq/core/btc/wallet/WalletService.java b/core/src/main/java/bisq/core/btc/wallet/WalletService.java index 7b65e81684..a044756505 100644 --- a/core/src/main/java/bisq/core/btc/wallet/WalletService.java +++ b/core/src/main/java/bisq/core/btc/wallet/WalletService.java @@ -468,7 +468,7 @@ public abstract class WalletService { @Nullable public TransactionConfidence getConfidenceForTxId(@Nullable String txId) { - if (wallet != null && txId != null) { + if (wallet != null && txId != null && !txId.isEmpty()) { Transaction tx = getTxByIdMap().get(Sha256Hash.wrap(txId)); if (tx != null) { return tx.getConfidence();