From 7fc0f2ff49034b85a85bcdff28448a6610700188 Mon Sep 17 00:00:00 2001 From: Jonathan Otto Date: Thu, 23 Mar 2023 18:25:09 -0400 Subject: [PATCH] Increase websocket frame size (again) Fixes capturing large block receipts and traces. in this case, the traces for block 3804216. --- rpc/websocket.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/websocket.go b/rpc/websocket.go index a6b95dd2acd3..161567ba8146 100644 --- a/rpc/websocket.go +++ b/rpc/websocket.go @@ -38,7 +38,7 @@ const ( wsPingInterval = 30 * time.Second wsPingWriteTimeout = 5 * time.Second wsPongTimeout = 30 * time.Second - wsMessageSizeLimit = 32 * 1024 * 1024 + wsMessageSizeLimit = 128 * 1024 * 1024 ) var wsBufferPool = new(sync.Pool)