From 4eccc59f6f8b8579e1505e6a08517876f39d8928 Mon Sep 17 00:00:00 2001 From: mfahampshire Date: Mon, 2 Dec 2024 14:23:37 +0100 Subject: [PATCH] bump default decay time --- sdk/rust/nym-sdk/src/tcp_proxy/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/rust/nym-sdk/src/tcp_proxy/utils.rs b/sdk/rust/nym-sdk/src/tcp_proxy/utils.rs index cafccf4c4c..3495aaf773 100644 --- a/sdk/rust/nym-sdk/src/tcp_proxy/utils.rs +++ b/sdk/rust/nym-sdk/src/tcp_proxy/utils.rs @@ -6,7 +6,7 @@ use tokio::{io::AsyncWriteExt as _, net::tcp::OwnedWriteHalf}; use tracing::{debug, info}; use uuid::Uuid; -const DEFAULT_DECAY: u64 = 2; // decay time in seconds +const DEFAULT_DECAY: u64 = 8; // decay time in seconds // Keeps track of // - incoming and unsorted messages wrapped in DecayWrapper for keeping track of when they were received