chore: bump max logs per response to 10k (#2688)

This commit is contained in:
Matthias Seitz
2023-05-16 00:08:53 +02:00
committed by GitHub
parent d91f1d1c50
commit 5dfbc9cf01

View File

@@ -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)]