Skip to content
Snippets Groups Projects
Unverified Commit 6dece52e authored by Bastian Köcher's avatar Bastian Köcher Committed by GitHub
Browse files

pallet-nomination-pools: Enable function for `fuzzing` feature as well (#2711)

The function is called by `do_try_state` which is also enabled for the
`fuzzing` feature.

---------

Co-authored-by: command-bot <>
parent c1a11b73
Branches
No related merge requests found
Pipeline #426258 canceled with stages
in 3 minutes and 31 seconds
......@@ -3467,7 +3467,13 @@ impl<T: Config> Pallet<T> {
/// Check if any pool have an incorrect amount of ED frozen.
///
/// This can happen if the ED has changed since the pool was created.
#[cfg(any(feature = "try-runtime", feature = "runtime-benchmarks", test, debug_assertions))]
#[cfg(any(
feature = "try-runtime",
feature = "runtime-benchmarks",
feature = "fuzzing",
test,
debug_assertions
))]
pub fn check_ed_imbalance() -> Result<(), DispatchError> {
let mut failed: u32 = 0;
BondedPools::<T>::iter_keys().for_each(|id| {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment