diff --git a/core/src/main/java/bisq/core/network/p2p/inventory/GetInventoryRequester.java b/core/src/main/java/bisq/core/network/p2p/inventory/GetInventoryRequester.java index 3309703f7f..02ea7596b3 100644 --- a/core/src/main/java/bisq/core/network/p2p/inventory/GetInventoryRequester.java +++ b/core/src/main/java/bisq/core/network/p2p/inventory/GetInventoryRequester.java @@ -41,7 +41,7 @@ import lombok.extern.slf4j.Slf4j; @Slf4j public class GetInventoryRequester implements MessageListener, ConnectionListener { - private final static int TIMEOUT_SEC = 90; + private final static int TIMEOUT_SEC = 180; private final NetworkNode networkNode; private final NodeAddress nodeAddress; diff --git a/p2p/src/main/java/bisq/network/p2p/mailbox/MailboxMessageService.java b/p2p/src/main/java/bisq/network/p2p/mailbox/MailboxMessageService.java index 5071697dbc..171fc1035d 100644 --- a/p2p/src/main/java/bisq/network/p2p/mailbox/MailboxMessageService.java +++ b/p2p/src/main/java/bisq/network/p2p/mailbox/MailboxMessageService.java @@ -104,7 +104,7 @@ import static com.google.common.base.Preconditions.checkNotNull; @Slf4j public class MailboxMessageService implements SetupListener, RequestDataManager.Listener, HashMapChangedListener, PersistedDataHost { - private static final long REPUBLISH_DELAY_SEC = TimeUnit.SECONDS.toSeconds(2); + private static final long REPUBLISH_DELAY_SEC = TimeUnit.MINUTES.toSeconds(2); private final EncryptionService encryptionService; private final IgnoredMailboxService ignoredMailboxService;