mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
ok codacy, you win
This commit is contained in:
parent
9a7439bef7
commit
fc70c11573
@ -35,6 +35,7 @@ import bisq.core.trade.Trade;
|
||||
import bisq.core.util.coin.CoinFormatter;
|
||||
|
||||
import org.bitcoinj.core.Coin;
|
||||
import org.bitcoinj.core.Sha256Hash;
|
||||
import org.bitcoinj.core.Transaction;
|
||||
import org.bitcoinj.core.TransactionConfidence;
|
||||
import org.bitcoinj.core.TransactionOutput;
|
||||
@ -217,10 +218,10 @@ class TransactionsListItem {
|
||||
if (offerFeePaymentTxID != null && offerFeePaymentTxID.equals(txId)) {
|
||||
details = Res.get("funds.tx.createOfferFee", tradeId);
|
||||
} else if (trade.getDepositTx() != null &&
|
||||
trade.getDepositTx().getTxId().toString().equals(txId)) {
|
||||
trade.getDepositTx().getTxId().equals(Sha256Hash.wrap(txId))) {
|
||||
details = Res.get("funds.tx.multiSigDeposit", tradeId);
|
||||
} else if (trade.getPayoutTx() != null &&
|
||||
trade.getPayoutTx().getTxId().toString().equals(txId)) {
|
||||
trade.getPayoutTx().getTxId().equals(Sha256Hash.wrap(txId))) {
|
||||
details = Res.get("funds.tx.multiSigPayout", tradeId);
|
||||
|
||||
if (amountAsCoin.isZero()) {
|
||||
|
Loading…
Reference in New Issue
Block a user