From 4ce4b0b922a5a305a448786e8366e33e77cf84ba Mon Sep 17 00:00:00 2001 From: blindchaser Date: Wed, 21 Jan 2026 14:45:50 -0500 Subject: [PATCH] revert: set MaxPacketMsgPayloadSize use MB unit --- sei-tendermint/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sei-tendermint/config/config.go b/sei-tendermint/config/config.go index b58ca8c49b..ffd6227331 100644 --- a/sei-tendermint/config/config.go +++ b/sei-tendermint/config/config.go @@ -702,7 +702,7 @@ func DefaultP2PConfig() *P2PConfig { MaxConnections: 100, MaxIncomingConnectionAttempts: 100, FlushThrottleTimeout: 100 * time.Millisecond, - MaxPacketMsgPayloadSize: 1048576, + MaxPacketMsgPayloadSize: 1000000, SendRate: 20971520, // 20 MiB/s per connection RecvRate: 20971520, // 20 MiB/s per connection PexReactor: true,