mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 15:00:30 +01:00
Merge pull request #6575 from yonson2023/fix_exception_governance
[1.9.10] Fix unhandled exception in DAO Governance view.
This commit is contained in:
commit
3b1a5f0337
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue