Change TTL from 4 to 6 min.

This commit is contained in:
Manfred Karrer 2016-05-08 12:58:34 +02:00
parent f14facfef1
commit dc3c630770

View File

@ -59,7 +59,7 @@ public final class Offer implements StoragePayload, RequiresOwnerIsOnlinePayload
private static final long serialVersionUID = Version.P2P_NETWORK_VERSION;
@JsonExclude
private static final Logger log = LoggerFactory.getLogger(Offer.class);
public static final long TTL = TimeUnit.SECONDS.toMillis(4 * 60);
public static final long TTL = TimeUnit.MINUTES.toMillis(6);
public final static String TAC_OFFERER = "With placing that offer I agree to trade " +
"with any trader who fulfills the conditions as defined above.";
public static final String TAC_TAKER = "With taking that offer I agree to the trade conditions as defined above.";