mirror of
https://github.com/retoaccess1/haveno-reto.git
synced 2024-11-10 13:13:36 +01:00
fix buyer trade info payout transaction ID hide if empty
This commit is contained in:
parent
27fdf87e84
commit
4cbc511bbd
@ -275,7 +275,7 @@ public class TradeDetailsWindow extends Overlay<TradeDetailsWindow> {
|
||||
addLabelTxIdTextField(gridPane, ++rowIndex, Res.get("shared.takerDepositTransactionId"),
|
||||
trade.getTakerDepositTx().getHash());
|
||||
|
||||
if (trade.getPayoutTxId() != null)
|
||||
if (trade.getPayoutTxId() != null && !trade.getPayoutTxId().isBlank())
|
||||
addLabelTxIdTextField(gridPane, ++rowIndex, Res.get("shared.payoutTxId"),
|
||||
trade.getPayoutTxId());
|
||||
if (showDisputedTx)
|
||||
|
Loading…
Reference in New Issue
Block a user