diff --git a/polkadot/runtime/kusama/src/lib.rs b/polkadot/runtime/kusama/src/lib.rs index 4e7dca2c8b..ddd0f29690 100644 --- a/polkadot/runtime/kusama/src/lib.rs +++ b/polkadot/runtime/kusama/src/lib.rs @@ -679,7 +679,7 @@ construct_runtime! { // Consensus support. Authorship: authorship::{Module, Call, Storage}, - Staking: staking::{Module, Call, Storage, Config, Event}, + Staking: staking::{Module, Call, Storage, Config, Event, ValidateUnsigned}, Offences: offences::{Module, Call, Storage, Event}, Historical: session_historical::{Module}, Session: session::{Module, Call, Storage, Event, Config}, diff --git a/polkadot/runtime/polkadot/src/lib.rs b/polkadot/runtime/polkadot/src/lib.rs index 2a2b46c88b..102b328b68 100644 --- a/polkadot/runtime/polkadot/src/lib.rs +++ b/polkadot/runtime/polkadot/src/lib.rs @@ -612,7 +612,7 @@ construct_runtime! { // Consensus support. Authorship: authorship::{Module, Call, Storage}, - Staking: staking::{Module, Call, Storage, Config, Event}, + Staking: staking::{Module, Call, Storage, Config, Event, ValidateUnsigned}, Offences: offences::{Module, Call, Storage, Event}, Historical: session_historical::{Module}, Session: session::{Module, Call, Storage, Event, Config}, diff --git a/polkadot/runtime/test-runtime/src/lib.rs b/polkadot/runtime/test-runtime/src/lib.rs index 0a29159227..b2b5c45a28 100644 --- a/polkadot/runtime/test-runtime/src/lib.rs +++ b/polkadot/runtime/test-runtime/src/lib.rs @@ -417,7 +417,7 @@ construct_runtime! { // Consensus support. Authorship: authorship::{Module, Call, Storage}, - Staking: staking::{Module, Call, Storage, Config, Event}, + Staking: staking::{Module, Call, Storage, Config, Event, ValidateUnsigned}, Offences: offences::{Module, Call, Storage, Event}, Historical: session_historical::{Module}, Session: session::{Module, Call, Storage, Event, Config},