From 7b9503c8b00fa0e2bce6152e57784e90eb64facb Mon Sep 17 00:00:00 2001 From: Clifton King Date: Fri, 27 May 2022 15:32:57 -0500 Subject: [PATCH] fix(abigen): clippy warnings on solidity bindings (#1319) eg the `console` contract throws a clippy warning --- ethers-contract/ethers-contract-abigen/src/contract.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-contract/ethers-contract-abigen/src/contract.rs b/ethers-contract/ethers-contract-abigen/src/contract.rs index ad4306d6..c2d57d16 100644 --- a/ethers-contract/ethers-contract-abigen/src/contract.rs +++ b/ethers-contract/ethers-contract-abigen/src/contract.rs @@ -49,7 +49,7 @@ impl ExpandedContract { // export all the created data types pub use #module::*; - #[allow(clippy::too_many_arguments)] + #[allow(clippy::too_many_arguments, non_camel_case_types)] mod #module { #imports #contract