mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-26 15:44:54 +01:00
Rename txID to txId
This commit is contained in:
parent
26e2676268
commit
c282b70001
2 changed files with 6 additions and 6 deletions
|
@ -20,14 +20,14 @@ package bisq.core.btc.listeners;
|
|||
import org.bitcoinj.core.TransactionConfidence;
|
||||
|
||||
public class TxConfidenceListener {
|
||||
private final String txID;
|
||||
private final String txId;
|
||||
|
||||
public TxConfidenceListener(String txID) {
|
||||
this.txID = txID;
|
||||
public TxConfidenceListener(String txId) {
|
||||
this.txId = txId;
|
||||
}
|
||||
|
||||
public String getTxID() {
|
||||
return txID;
|
||||
public String getTxId() {
|
||||
return txId;
|
||||
}
|
||||
|
||||
@SuppressWarnings("UnusedParameters")
|
||||
|
|
|
@ -848,7 +848,7 @@ public abstract class WalletService {
|
|||
.filter(txConfidenceListener -> tx != null &&
|
||||
tx.getTxId().toString() != null &&
|
||||
txConfidenceListener != null &&
|
||||
tx.getTxId().toString().equals(txConfidenceListener.getTxID()))
|
||||
tx.getTxId().toString().equals(txConfidenceListener.getTxId()))
|
||||
.forEach(txConfidenceListener ->
|
||||
txConfidenceListener.onTransactionConfidenceChanged(tx.getConfidence()));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue