(error: serde_json::Error)
| 32 | /// Generically convert serde errors to Web3Error::JsonParseError |
| 33 | impl From<serde_json::Error> for Web3Error { |
| 34 | fn from(error: serde_json::Error) -> Self { |
| 35 | Web3Error::JsonParseError(error.to_string()) |
| 36 | } |
| 37 | } |
nothing calls this directly
no outgoing calls
no test coverage detected