MCPcopy Create free account
hub / github.com/ChainSecurity/deployment_validation / get_many_debug_traces

Function get_many_debug_traces

lib/web3.rs:86–95  ·  view source on GitHub ↗
(
    config: &DVFConfig,
    tx_hashes: &Vec<String>,
)

Source from the content-addressed store, hash-verified

84}
85
86pub fn get_many_debug_traces(
87 config: &DVFConfig,
88 tx_hashes: &Vec<String>,
89) -> Result<Vec<TraceWithAddress>, ValidationError> {
90 let mut all_traces: Vec<TraceWithAddress> = vec![];
91 for tx_hash in tx_hashes {
92 all_traces.push(get_eth_debug_trace(config, tx_hash)?);
93 }
94 Ok(all_traces)
95}
96
97pub fn get_init_code(
98 config: &DVFConfig,

Callers

nothing calls this directly

Calls 1

get_eth_debug_traceFunction · 0.85

Tested by

no test coverage detected