mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Fix dispute payout label
This commit is contained in:
parent
5c3891fbe6
commit
effea1f6b6
1 changed files with 2 additions and 1 deletions
|
@ -148,7 +148,8 @@ public class TransactionsListItem {
|
|||
} else if (trade.getPayoutTx() != null &&
|
||||
trade.getPayoutTx().getHashAsString().equals(txId)) {
|
||||
details = "MultiSig payout: " + tradable.getShortId();
|
||||
} else if (trade.getDisputeState() == Trade.DisputeState.DISPUTE_CLOSED) {
|
||||
} else if (trade.getDisputeState() == Trade.DisputeState.DISPUTE_CLOSED ||
|
||||
trade.getDisputeState() == Trade.DisputeState.DISPUTE_STARTED_BY_PEER) {
|
||||
if (valueSentToMe.isPositive()) {
|
||||
details = "Dispute payout: " + tradable.getShortId();
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue