From 0727b9ce7a77f8fb557b0b2fbe4884a8527af43f Mon Sep 17 00:00:00 2001 From: lumtis Date: Wed, 10 Jan 2024 17:03:11 -0800 Subject: [PATCH] fix(): reduce websocket message limit to 10MB --- rpc/websockets.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/websockets.go b/rpc/websockets.go index c3b928dc36..3c64bfdb8a 100644 --- a/rpc/websockets.go +++ b/rpc/websockets.go @@ -47,7 +47,7 @@ import ( ) const ( - messageSizeLimit = 32 * 1024 * 1024 // 32MB + messageSizeLimit = 10 * 1024 * 1024 // 10MB )