mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-10-10 01:28:53 -04:00
only resync for missing deposit txs if state is seen
This commit is contained in:
parent
d7c934eac4
commit
9b179f4b10
1 changed files with 1 additions and 1 deletions
|
@ -2894,7 +2894,7 @@ public abstract class Trade extends XmrWalletBase implements Tradable, Model {
|
|||
txs = getTxs(true);
|
||||
|
||||
// txs may not be fetched if confirmed after last sync
|
||||
if (isDepositsPublished() && !hasDepositTxs(txs)) {
|
||||
if (isDepositsSeen() && !hasDepositTxs(txs)) {
|
||||
log.info("Deposits are missing for {} {} after being published, resyncing", getClass().getSimpleName(), getId());
|
||||
HavenoUtils.waitFor(MISSING_TXS_DELAY_MS);
|
||||
sync();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue