From dbde6d878fd74079accb2d2fdd6da7b7fff4afbe Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Wed, 16 Aug 2023 14:50:14 +0200 Subject: [PATCH] node: raise engine batch limit even more Since this isn't configurable, we really want to ensure this limit will never become an issue in the CL/EL communication. --- node/defaults.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/defaults.go b/node/defaults.go index 79fb53a955..42d9d4cde0 100644 --- a/node/defaults.go +++ b/node/defaults.go @@ -40,7 +40,7 @@ const ( // Engine API batch limits: these are not configurable by users, and should cover the // needs of all CLs. engineAPIBatchItemLimit = 2000 - engineAPIBatchResponseSizeLimit = 100 * 1000 * 1000 + engineAPIBatchResponseSizeLimit = 250 * 1000 * 1000 ) var (