Skip to content

Commit 40e0b87

Browse files
committed
Fix StakingPrecompileV2 dispatch
1 parent 092d518 commit 40e0b87

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

precompiles/src/extensions.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,9 @@ pub(crate) trait PrecompileExt<AccountId: From<[u8; 32]>>: Precompile {
148148
}
149149
}
150150

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)]
151154
#[cfg(test)]
152155
mod test {
153156
use super::*;
@@ -172,7 +175,6 @@ mod test {
172175
const INDEX: u64 = 2051;
173176
}
174177

175-
#[allow(unreachable_code)]
176178
#[precompile_utils::precompile]
177179
impl TestPrecompile {}
178180
}

precompiles/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ where
147147
StakingPrecompile::<R>::try_execute::<R>(handle, PrecompileEnum::Staking)
148148
}
149149
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)
151151
}
152152
a if a == hash(SubnetPrecompile::<R>::INDEX) => {
153153
SubnetPrecompile::<R>::try_execute::<R>(handle, PrecompileEnum::Subnet)

0 commit comments

Comments
 (0)