File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -148,6 +148,9 @@ pub(crate) trait PrecompileExt<AccountId: From<[u8; 32]>>: Precompile {
148
148
}
149
149
}
150
150
151
+ // allowing unreachable for the whole module fixes clippy reports about precompile macro
152
+ // implementation for `TestPrecompile`, that couldn't be fixed granularly
153
+ #[ allow( unreachable_code) ]
151
154
#[ cfg( test) ]
152
155
mod test {
153
156
use super :: * ;
@@ -172,7 +175,6 @@ mod test {
172
175
const INDEX : u64 = 2051 ;
173
176
}
174
177
175
- #[ allow( unreachable_code) ]
176
178
#[ precompile_utils:: precompile]
177
179
impl TestPrecompile { }
178
180
}
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ where
147
147
StakingPrecompile :: < R > :: try_execute :: < R > ( handle, PrecompileEnum :: Staking )
148
148
}
149
149
a if a == hash ( StakingPrecompileV2 :: < R > :: INDEX ) => {
150
- StakingPrecompile :: < R > :: try_execute :: < R > ( handle, PrecompileEnum :: Staking )
150
+ StakingPrecompileV2 :: < R > :: try_execute :: < R > ( handle, PrecompileEnum :: Staking )
151
151
}
152
152
a if a == hash ( SubnetPrecompile :: < R > :: INDEX ) => {
153
153
SubnetPrecompile :: < R > :: try_execute :: < R > ( handle, PrecompileEnum :: Subnet )
You can’t perform that action at this time.
0 commit comments