mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-10-01 01:35:48 -04:00
TransactionListItem does not fetch tx updates
This commit is contained in:
parent
70420b2f78
commit
d41ad6fa5f
@ -34,9 +34,7 @@ import lombok.Getter;
|
|||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import monero.wallet.model.MoneroIncomingTransfer;
|
import monero.wallet.model.MoneroIncomingTransfer;
|
||||||
import monero.wallet.model.MoneroOutgoingTransfer;
|
import monero.wallet.model.MoneroOutgoingTransfer;
|
||||||
import monero.wallet.model.MoneroTxQuery;
|
|
||||||
import monero.wallet.model.MoneroTxWallet;
|
import monero.wallet.model.MoneroTxWallet;
|
||||||
import monero.wallet.model.MoneroWalletListener;
|
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
import java.math.BigInteger;
|
import java.math.BigInteger;
|
||||||
@ -62,7 +60,6 @@ class TransactionsListItem {
|
|||||||
private boolean initialTxConfidenceVisibility = true;
|
private boolean initialTxConfidenceVisibility = true;
|
||||||
private final Supplier<LazyFields> lazyFieldsSupplier;
|
private final Supplier<LazyFields> lazyFieldsSupplier;
|
||||||
private XmrWalletService xmrWalletService;
|
private XmrWalletService xmrWalletService;
|
||||||
MoneroWalletListener walletListener;
|
|
||||||
|
|
||||||
private static class LazyFields {
|
private static class LazyFields {
|
||||||
TxConfidenceIndicator txConfidenceIndicator;
|
TxConfidenceIndicator txConfidenceIndicator;
|
||||||
@ -185,26 +182,9 @@ class TransactionsListItem {
|
|||||||
GUIUtil.updateConfidence(tx, tooltip, txConfidenceIndicator);
|
GUIUtil.updateConfidence(tx, tooltip, txConfidenceIndicator);
|
||||||
confirmations = tx.getNumConfirmations();
|
confirmations = tx.getNumConfirmations();
|
||||||
}});
|
}});
|
||||||
|
|
||||||
// listen for tx updates
|
|
||||||
walletListener = new MoneroWalletListener() {
|
|
||||||
@Override
|
|
||||||
public void onNewBlock(long height) {
|
|
||||||
MoneroTxWallet tx = xmrWalletService.getWallet().getTxs(new MoneroTxQuery()
|
|
||||||
.setHash(txId)
|
|
||||||
.setInTxPool(confirmations > 0 ? false : null)).get(0);
|
|
||||||
GUIUtil.updateConfidence(tx, lazy().tooltip, lazy().txConfidenceIndicator);
|
|
||||||
confirmations = tx.getNumConfirmations();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
xmrWalletService.addWalletListener(walletListener);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void cleanup() {
|
public void cleanup() {
|
||||||
if (walletListener != null) {
|
|
||||||
xmrWalletService.removeWalletListener(walletListener);
|
|
||||||
walletListener = null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public TxConfidenceIndicator getTxConfidenceIndicator() {
|
public TxConfidenceIndicator getTxConfidenceIndicator() {
|
||||||
|
Loading…
Reference in New Issue
Block a user