mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-19 23:36:00 -04:00
Fix dispute payout label
This commit is contained in:
parent
5c3891fbe6
commit
effea1f6b6
@ -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…
x
Reference in New Issue
Block a user