We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fuzzing
1 parent c1a11b7 commit 6dece52Copy full SHA for 6dece52
1 file changed
substrate/frame/nomination-pools/src/lib.rs
@@ -3467,7 +3467,13 @@ impl<T: Config> Pallet<T> {
3467
/// Check if any pool have an incorrect amount of ED frozen.
3468
///
3469
/// This can happen if the ED has changed since the pool was created.
3470
- #[cfg(any(feature = "try-runtime", feature = "runtime-benchmarks", test, debug_assertions))]
+ #[cfg(any(
3471
+ feature = "try-runtime",
3472
+ feature = "runtime-benchmarks",
3473
+ feature = "fuzzing",
3474
+ test,
3475
+ debug_assertions
3476
+ ))]
3477
pub fn check_ed_imbalance() -> Result<(), DispatchError> {
3478
let mut failed: u32 = 0;
3479
BondedPools::<T>::iter_keys().for_each(|id| {
0 commit comments