diff --git a/crates/eips/src/eip7702/auth_list.rs b/crates/eips/src/eip7702/auth_list.rs index 5604508a619..52236837cfd 100644 --- a/crates/eips/src/eip7702/auth_list.rs +++ b/crates/eips/src/eip7702/auth_list.rs @@ -13,10 +13,7 @@ use core::hash::{Hash, Hasher}; #[derive(Debug, Clone, Hash, RlpEncodable, RlpDecodable, Eq, PartialEq)] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] -#[cfg_attr( - any(test, feature = "arbitrary"), - derive(arbitrary::Arbitrary) -)] +#[cfg_attr(any(test, feature = "arbitrary"), derive(arbitrary::Arbitrary))] pub struct Authorization { /// The chain ID of the authorization. pub chain_id: ChainId, @@ -233,10 +230,7 @@ impl Deref for RecoveredAuthorization { /// The wrapper type is used for RLP encoding and decoding. #[derive(Default, Debug, Copy, Clone, Hash, Eq, PartialEq)] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] -#[cfg_attr( - any(test, feature = "arbitrary"), - derive(arbitrary::Arbitrary) -)] +#[cfg_attr(any(test, feature = "arbitrary"), derive(arbitrary::Arbitrary))] pub struct OptionalNonce(Option); impl OptionalNonce {