diff --git a/web3-proxy/src/jsonrpc.rs b/web3-proxy/src/jsonrpc.rs index e705f252..94fbe56d 100644 --- a/web3-proxy/src/jsonrpc.rs +++ b/web3-proxy/src/jsonrpc.rs @@ -83,7 +83,7 @@ impl<'de> Deserialize<'de> for JsonRpcRequestEnum { match key { Field::JsonRpc => { // throw away the value - let foo: String = map.next_value()?; + let _: String = map.next_value()?; } Field::Id => { if id.is_some() {