From 5dfbc9cf01868b20bae604339d24e7aa183c1334 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Tue, 16 May 2023 00:08:53 +0200 Subject: [PATCH] chore: bump max logs per response to 10k (#2688) --- crates/rpc/rpc-builder/src/eth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rpc/rpc-builder/src/eth.rs b/crates/rpc/rpc-builder/src/eth.rs index c0377f791e..6fec146c7f 100644 --- a/crates/rpc/rpc-builder/src/eth.rs +++ b/crates/rpc/rpc-builder/src/eth.rs @@ -8,7 +8,7 @@ use reth_rpc::{ use serde::{Deserialize, Serialize}; /// The default maximum of logs in a single response. -pub(crate) const DEFAULT_MAX_LOGS_IN_RESPONSE: usize = 2_000; +pub(crate) const DEFAULT_MAX_LOGS_IN_RESPONSE: usize = 10_000; /// All handlers for the `eth` namespace #[derive(Debug, Clone)]