From fef8d7f4e6302cc947fbd83e286c7e83001ab2b4 Mon Sep 17 00:00:00 2001 From: DoTheBestToGetTheBest <146037313+DoTheBestToGetTheBest@users.noreply.github.com> Date: Mon, 30 Oct 2023 13:00:43 -0700 Subject: [PATCH] feat(args) : increase default max response size (#5237) Co-authored-by: Matthias Seitz --- bin/reth/src/args/rpc_server_args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/reth/src/args/rpc_server_args.rs b/bin/reth/src/args/rpc_server_args.rs index 4b66eae3b..75f7c0a54 100644 --- a/bin/reth/src/args/rpc_server_args.rs +++ b/bin/reth/src/args/rpc_server_args.rs @@ -52,7 +52,7 @@ pub(crate) const RPC_DEFAULT_MAX_REQUEST_SIZE_MB: u32 = 15; /// Default max response size in MB. /// /// This is only relevant for very large trace responses. -pub(crate) const RPC_DEFAULT_MAX_RESPONSE_SIZE_MB: u32 = 115; +pub(crate) const RPC_DEFAULT_MAX_RESPONSE_SIZE_MB: u32 = 150; /// Default number of incoming connections. pub(crate) const RPC_DEFAULT_MAX_CONNECTIONS: u32 = 500;