mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
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.
This commit is contained in:
parent
957f1a8ebb
commit
dbde6d878f
1 changed files with 1 additions and 1 deletions
|
|
@ -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 (
|
||||
|
|
|
|||
Loading…
Reference in a new issue