Fix dispute payout label

This commit is contained in:
Manfred Karrer 2016-04-17 19:57:24 +02:00
parent 5c3891fbe6
commit effea1f6b6

View file

@ -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 {