| 116 | #[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] |
| 117 | #[serde(rename_all = "camelCase")] |
| 118 | pub struct CallTrace { |
| 119 | pub call_type: CallKind, |
| 120 | pub from: Address, |
| 121 | pub to: Address, |
| 122 | pub value: Uint, |
| 123 | } |
| 124 | |
| 125 | #[derive(Debug, Default, Clone, Copy, Serialize, PartialEq)] |
| 126 | #[serde(transparent)] |
nothing calls this directly
no outgoing calls
no test coverage detected