diff --git a/polkadot/runtime/parachains/src/runtime_api_impl/v10.rs b/polkadot/runtime/parachains/src/runtime_api_impl/v10.rs index 697890232211..fc3f2520c4aa 100644 --- a/polkadot/runtime/parachains/src/runtime_api_impl/v10.rs +++ b/polkadot/runtime/parachains/src/runtime_api_impl/v10.rs @@ -531,7 +531,12 @@ pub fn disabled_validators() -> Vec where T: shared::Config, { - >::disabled_validators() + // Manually accounting for issue #64 + if shared::Pallet::::on_chain_storage_version() == StorageVersion::new(15) { + shared::migration::v15::DisabledValidators::::get() + } else { + shared::Pallet::::disabled_validators() + } } /// Returns the current state of the node features.