| 44 | #[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] |
| 45 | #[serde(rename_all = "camelCase")] |
| 46 | pub struct SimulationResponse { |
| 47 | pub simulation_id: u64, |
| 48 | pub gas_used: u64, |
| 49 | pub block_number: u64, |
| 50 | pub success: bool, |
| 51 | pub trace: Vec<CallTrace>, |
| 52 | pub formatted_trace: Option<String>, |
| 53 | pub logs: Vec<Log>, |
| 54 | pub exit_reason: InstructionResult, |
| 55 | pub return_data: Bytes, |
| 56 | } |
| 57 | |
| 58 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 59 | #[serde(rename_all = "camelCase")] |
nothing calls this directly
no outgoing calls
no test coverage detected