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:
Manfred Karrer 2019-03-03 22:57:33 -05:00
parent 0711ab936d
commit ed6fa7b1a3
No known key found for this signature in database
GPG key ID: 401250966A6B2C46

View file

@ -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