(
config: &DVFConfig,
tx_hashes: &Vec<String>,
)
| 84 | } |
| 85 | |
| 86 | pub 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 | |
| 97 | pub fn get_init_code( |
| 98 | config: &DVFConfig, |
nothing calls this directly
no test coverage detected