Skip to content

Commit

Permalink
Increase TTL for offer from 7 to 8 min.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ManfredKarrer committed Mar 4, 2019
1 parent 0711ab9 commit ed6fa7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/bisq/core/offer/OfferPayload.java
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ public static OfferPayload fromProto(PB.OfferPayload proto) {

@Override
public long getTTL() {
return TimeUnit.MINUTES.toMillis(7);
return TimeUnit.MINUTES.toMillis(8);
}

@Override
Expand Down

0 comments on commit ed6fa7b

Please sign in to comment.