mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-09-24 23:08:36 -04:00
publish trade stat after random delay in ms
This commit is contained in:
parent
19ee6d4343
commit
723d5cc1dd
1 changed files with 1 additions and 1 deletions
|
@ -2476,7 +2476,7 @@ public abstract class Trade extends XmrWalletBase implements Tradable, Model {
|
|||
// publish after random delay within 24 hours
|
||||
UserThread.runAfterRandomDelay(() -> {
|
||||
if (!isShutDownStarted) doPublishTradeStatistics();
|
||||
}, 0, 24, TimeUnit.HOURS);
|
||||
}, 0, 24 * 60 * 60 * 1000, TimeUnit.MILLISECONDS);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue