mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Increase Alert.TTL to 30 days
This commit is contained in:
parent
eb6360dffa
commit
943757179c
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ public final class Alert implements StoragePayload {
|
|||
// That object is sent over the wire, so we need to take care of version compatibility.
|
||||
private static final long serialVersionUID = Version.P2P_NETWORK_VERSION;
|
||||
private static final Logger log = LoggerFactory.getLogger(Alert.class);
|
||||
private static final long TTL = TimeUnit.DAYS.toMillis(21);
|
||||
private static final long TTL = TimeUnit.DAYS.toMillis(30);
|
||||
|
||||
// Payload
|
||||
public final String message;
|
||||
|
|
Loading…
Add table
Reference in a new issue