| 77 | |
| 78 | #[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] |
| 79 | pub struct StateOverride { |
| 80 | pub balance: Option<PermissiveUint>, |
| 81 | pub nonce: Option<u64>, |
| 82 | pub code: Option<Bytes>, |
| 83 | #[serde(flatten)] |
| 84 | pub state: Option<State>, |
| 85 | } |
| 86 | |
| 87 | #[derive(Debug, Clone, Serialize, Deserialize, PartialEq)] |
| 88 | #[serde(untagged)] |
nothing calls this directly
no outgoing calls
no test coverage detected