mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 01:11:10 +00:00
Change pallet naming in test-runtime (#3551)
* Change pallet naming in test-runtime
This is required to make the `well_know_keys::ACTIVE_CONFIG` match the
`ActiveConfig` key.
* Use correct name
* 🤦
This commit is contained in:
@@ -158,7 +158,7 @@ fn polkadot_testnet_genesis(
|
|||||||
claims: runtime::ClaimsConfig { claims: vec![], vesting: vec![] },
|
claims: runtime::ClaimsConfig { claims: vec![], vesting: vec![] },
|
||||||
vesting: runtime::VestingConfig { vesting: vec![] },
|
vesting: runtime::VestingConfig { vesting: vec![] },
|
||||||
sudo: runtime::SudoConfig { key: root_key },
|
sudo: runtime::SudoConfig { key: root_key },
|
||||||
parachains_configuration: runtime::ParachainsConfigurationConfig {
|
configuration: runtime::ConfigurationConfig {
|
||||||
config: polkadot_runtime_parachains::configuration::HostConfiguration {
|
config: polkadot_runtime_parachains::configuration::HostConfiguration {
|
||||||
validation_upgrade_frequency: 10u32,
|
validation_upgrade_frequency: 10u32,
|
||||||
validation_upgrade_delay: 5,
|
validation_upgrade_delay: 5,
|
||||||
|
|||||||
@@ -765,6 +765,18 @@ pub mod pallet {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[pallet::hooks]
|
||||||
|
impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {
|
||||||
|
fn integrity_test() {
|
||||||
|
assert_eq!(
|
||||||
|
&ActiveConfig::<T>::hashed_key(),
|
||||||
|
primitives::v1::well_known_keys::ACTIVE_CONFIG,
|
||||||
|
"`well_known_keys::ACTIVE_CONFIG` doesn't match key of `ActiveConfig`! Make sure that the name of the\
|
||||||
|
configuration pallet is `Configuration` in the runtime!",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T: Config> Pallet<T> {
|
impl<T: Config> Pallet<T> {
|
||||||
|
|||||||
@@ -529,7 +529,7 @@ construct_runtime! {
|
|||||||
Vesting: pallet_vesting::{Pallet, Call, Storage, Event<T>, Config<T>},
|
Vesting: pallet_vesting::{Pallet, Call, Storage, Event<T>, Config<T>},
|
||||||
|
|
||||||
// Parachains runtime modules
|
// Parachains runtime modules
|
||||||
ParachainsConfiguration: parachains_configuration::{Pallet, Call, Storage, Config<T>},
|
Configuration: parachains_configuration::{Pallet, Call, Storage, Config<T>},
|
||||||
ParaInclusion: parachains_inclusion::{Pallet, Call, Storage, Event<T>},
|
ParaInclusion: parachains_inclusion::{Pallet, Call, Storage, Event<T>},
|
||||||
ParasInherent: parachains_paras_inherent::{Pallet, Call, Storage, Inherent},
|
ParasInherent: parachains_paras_inherent::{Pallet, Call, Storage, Inherent},
|
||||||
Initializer: parachains_initializer::{Pallet, Call, Storage},
|
Initializer: parachains_initializer::{Pallet, Call, Storage},
|
||||||
|
|||||||
Reference in New Issue
Block a user