Struct phronesis::evm_tracing_types::EvmTracingConfig
source · pub struct EvmTracingConfig {Show 14 fields
pub ethapi: Vec<EthApi>,
pub ethapi_max_permits: u32,
pub ethapi_trace_max_count: u32,
pub ethapi_trace_cache_duration: u64,
pub eth_log_block_cache: usize,
pub eth_statuses_cache: usize,
pub max_past_logs: u32,
pub tracing_raw_max_memory_usage: usize,
pub fee_history_limit: u64,
pub frontier_backend_type: FrontierBackendType,
pub frontier_sql_backend_pool_size: u32,
pub frontier_sql_backend_num_ops_timeout: u32,
pub frontier_sql_backend_thread_count: u32,
pub frontier_sql_backend_cache_size: u64,
}
Expand description
EVM Tracing CLI config
Fields§
§ethapi: Vec<EthApi>
Enabled EVM tracing flags.
ethapi_max_permits: u32
Number of concurrent tracing tasks.
ethapi_trace_max_count: u32
The Maximum number of trace entries a single request of trace_filter
is allowed to return.
A request asking for more or an unbounded one going over this limit will both return an
error.
ethapi_trace_cache_duration: u64
Duration (in seconds) after which the cache of trace_filter
for a given block will be
discarded.
eth_log_block_cache: usize
Size in bytes of the LRU cache for block data.
eth_statuses_cache: usize
Size in bytes of the LRU cache for transaction statuses data.
max_past_logs: u32
Maximum number of logs in a query.
tracing_raw_max_memory_usage: usize
Size in bytes of data a raw tracing request is allowed to use. Bound the size of memory, stack and storage data.
fee_history_limit: u64
§frontier_backend_type: FrontierBackendType
§frontier_sql_backend_pool_size: u32
§frontier_sql_backend_num_ops_timeout: u32
§frontier_sql_backend_thread_count: u32
§frontier_sql_backend_cache_size: u64
Trait Implementations§
source§impl Clone for EvmTracingConfig
impl Clone for EvmTracingConfig
source§fn clone(&self) -> EvmTracingConfig
fn clone(&self) -> EvmTracingConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for EvmTracingConfig
impl Send for EvmTracingConfig
impl Sync for EvmTracingConfig
impl Unpin for EvmTracingConfig
impl UnwindSafe for EvmTracingConfig
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> IsType<T> for T
impl<T> IsType<T> for T
§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read more§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.