mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Increase TTL for offer from 7 to 8 min.
We got reports that offers got removed and re-added even if the maker had good network connections. Seems the network did not propagate the refresh msg in time or get too crowded. Increasing the TTl should help to make those cases more rare. To decrease the refresh rate from 5 min to 4 min. might be more risky as it would create much more traffic.
This commit is contained in:
parent
0711ab936d
commit
ed6fa7b1a3
1 changed files with 1 additions and 1 deletions
|
@ -356,7 +356,7 @@ public final class OfferPayload implements ProtectedStoragePayload, ExpirablePay
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public long getTTL() {
|
public long getTTL() {
|
||||||
return TimeUnit.MINUTES.toMillis(7);
|
return TimeUnit.MINUTES.toMillis(8);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue