mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-10-01 01:35:48 -04:00
do not sync trade wallet on deletion if deposit not requested
This commit is contained in:
parent
be90b317f2
commit
2c0275e336
@ -949,7 +949,7 @@ public abstract class Trade implements Tradable, Model {
|
||||
}
|
||||
|
||||
// wallet must be synced
|
||||
if (!isSyncedWithinTolerance()) {
|
||||
if (isDepositRequested() && !isSyncedWithinTolerance()) {
|
||||
log.warn("Wallet is not synced for {} {}, syncing", getClass().getSimpleName(), getId());
|
||||
syncWallet(true);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user