mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-26 07:40:35 -04: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 &&
|
} else if (trade.getPayoutTx() != null &&
|
||||||
trade.getPayoutTx().getHashAsString().equals(txId)) {
|
trade.getPayoutTx().getHashAsString().equals(txId)) {
|
||||||
details = "MultiSig payout: " + tradable.getShortId();
|
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()) {
|
if (valueSentToMe.isPositive()) {
|
||||||
details = "Dispute payout: " + tradable.getShortId();
|
details = "Dispute payout: " + tradable.getShortId();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue