mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 01:41:03 +00:00
Eliminate experimental feature (#3654)
Totally removes the `experimental` feature. Closes #3648. --------- Co-authored-by: Bastian Köcher <git@kchr.de>
This commit is contained in:
@@ -77,5 +77,3 @@ try-runtime = [
|
|||||||
"pallet-timestamp/try-runtime",
|
"pallet-timestamp/try-runtime",
|
||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|||||||
@@ -125,7 +125,6 @@ impl pallet_aura::Config for Test {
|
|||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Self>;
|
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Self>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -251,8 +251,6 @@ std = [
|
|||||||
"xcm/std",
|
"xcm/std",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|
||||||
# A feature that should be enabled when the runtime should be built for on-chain
|
# A feature that should be enabled when the runtime should be built for on-chain
|
||||||
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
||||||
# to make it smaller, like logging for example.
|
# to make it smaller, like logging for example.
|
||||||
|
|||||||
@@ -187,10 +187,7 @@ impl pallet_timestamp::Config for Runtime {
|
|||||||
/// A timestamp: milliseconds since the unix epoch.
|
/// A timestamp: milliseconds since the unix epoch.
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -723,7 +720,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -236,8 +236,6 @@ std = [
|
|||||||
"xcm/std",
|
"xcm/std",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|
||||||
# A feature that should be enabled when the runtime should be built for on-chain
|
# A feature that should be enabled when the runtime should be built for on-chain
|
||||||
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
||||||
# to make it smaller, like logging for example.
|
# to make it smaller, like logging for example.
|
||||||
|
|||||||
@@ -171,10 +171,7 @@ impl pallet_timestamp::Config for Runtime {
|
|||||||
/// A timestamp: milliseconds since the unix epoch.
|
/// A timestamp: milliseconds since the unix epoch.
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -703,7 +700,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -296,7 +296,6 @@ try-runtime = [
|
|||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
fast-runtime = []
|
fast-runtime = []
|
||||||
|
|
||||||
# A feature that should be enabled when the runtime should be built for on-chain
|
# A feature that should be enabled when the runtime should be built for on-chain
|
||||||
|
|||||||
@@ -277,10 +277,7 @@ impl pallet_timestamp::Config for Runtime {
|
|||||||
/// A timestamp: milliseconds since the unix epoch.
|
/// A timestamp: milliseconds since the unix epoch.
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -445,7 +442,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -246,8 +246,6 @@ try-runtime = [
|
|||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|
||||||
# A feature that should be enabled when the runtime should be built for on-chain
|
# A feature that should be enabled when the runtime should be built for on-chain
|
||||||
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
||||||
# to make it smaller, like logging for example.
|
# to make it smaller, like logging for example.
|
||||||
|
|||||||
@@ -251,10 +251,7 @@ impl pallet_timestamp::Config for Runtime {
|
|||||||
/// A timestamp: milliseconds since the unix epoch.
|
/// A timestamp: milliseconds since the unix epoch.
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -407,7 +404,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -232,8 +232,6 @@ std = [
|
|||||||
"xcm/std",
|
"xcm/std",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|
||||||
# A feature that should be enabled when the runtime should be built for on-chain
|
# A feature that should be enabled when the runtime should be built for on-chain
|
||||||
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
||||||
# to make it smaller, like logging for example.
|
# to make it smaller, like logging for example.
|
||||||
|
|||||||
@@ -184,10 +184,7 @@ impl pallet_timestamp::Config for Runtime {
|
|||||||
/// A timestamp: milliseconds since the unix epoch.
|
/// A timestamp: milliseconds since the unix epoch.
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -483,7 +480,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -196,8 +196,6 @@ try-runtime = [
|
|||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|
||||||
# A feature that should be enabled when the runtime should be built for on-chain
|
# A feature that should be enabled when the runtime should be built for on-chain
|
||||||
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
||||||
# to make it smaller, like logging for example.
|
# to make it smaller, like logging for example.
|
||||||
|
|||||||
@@ -193,10 +193,7 @@ impl pallet_timestamp::Config for Runtime {
|
|||||||
/// A timestamp: milliseconds since the unix epoch.
|
/// A timestamp: milliseconds since the unix epoch.
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = pallet_timestamp::weights::SubstrateWeight<Runtime>;
|
type WeightInfo = pallet_timestamp::weights::SubstrateWeight<Runtime>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -349,7 +346,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -194,6 +194,4 @@ try-runtime = [
|
|||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|
||||||
fast-runtime = []
|
fast-runtime = []
|
||||||
|
|||||||
@@ -206,10 +206,7 @@ impl pallet_timestamp::Config for Runtime {
|
|||||||
/// A timestamp: milliseconds since the unix epoch.
|
/// A timestamp: milliseconds since the unix epoch.
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -369,7 +366,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -190,6 +190,4 @@ try-runtime = [
|
|||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|
||||||
fast-runtime = []
|
fast-runtime = []
|
||||||
|
|||||||
@@ -206,10 +206,7 @@ impl pallet_timestamp::Config for Runtime {
|
|||||||
/// A timestamp: milliseconds since the unix epoch.
|
/// A timestamp: milliseconds since the unix epoch.
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -369,7 +366,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -135,8 +135,6 @@ try-runtime = [
|
|||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|
||||||
# A feature that should be enabled when the runtime should be built for on-chain
|
# A feature that should be enabled when the runtime should be built for on-chain
|
||||||
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
|
||||||
# to make it smaller, like logging for example.
|
# to make it smaller, like logging for example.
|
||||||
|
|||||||
@@ -221,10 +221,7 @@ impl cumulus_pallet_aura_ext::Config for Runtime {}
|
|||||||
impl pallet_timestamp::Config for Runtime {
|
impl pallet_timestamp::Config for Runtime {
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -233,7 +230,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -188,5 +188,3 @@ try-runtime = [
|
|||||||
"polkadot-runtime-common/try-runtime",
|
"polkadot-runtime-common/try-runtime",
|
||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|||||||
@@ -187,10 +187,7 @@ impl pallet_timestamp::Config for Runtime {
|
|||||||
/// A timestamp: milliseconds since the unix epoch.
|
/// A timestamp: milliseconds since the unix epoch.
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -337,7 +334,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -188,5 +188,3 @@ try-runtime = [
|
|||||||
"polkadot-runtime-common/try-runtime",
|
"polkadot-runtime-common/try-runtime",
|
||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|||||||
@@ -187,10 +187,7 @@ impl pallet_timestamp::Config for Runtime {
|
|||||||
/// A timestamp: milliseconds since the unix epoch.
|
/// A timestamp: milliseconds since the unix epoch.
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -337,7 +334,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -79,5 +79,3 @@ std = [
|
|||||||
"sp-version/std",
|
"sp-version/std",
|
||||||
"substrate-wasm-builder",
|
"substrate-wasm-builder",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|||||||
@@ -213,17 +213,13 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Self>;
|
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Self>;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl pallet_timestamp::Config for Runtime {
|
impl pallet_timestamp::Config for Runtime {
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ parachains_common::SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = ();
|
type WeightInfo = ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -99,5 +99,3 @@ try-runtime = [
|
|||||||
"parachain-info/try-runtime",
|
"parachain-info/try-runtime",
|
||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|||||||
@@ -241,17 +241,13 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Self>;
|
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Self>;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl pallet_timestamp::Config for Runtime {
|
impl pallet_timestamp::Config for Runtime {
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ parachains_common::SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = ();
|
type WeightInfo = ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -191,5 +191,3 @@ try-runtime = [
|
|||||||
"polkadot-runtime-common/try-runtime",
|
"polkadot-runtime-common/try-runtime",
|
||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|||||||
@@ -582,7 +582,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Self>;
|
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Self>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -134,5 +134,3 @@ runtime-benchmarks = [
|
|||||||
"xcm-builder/runtime-benchmarks",
|
"xcm-builder/runtime-benchmarks",
|
||||||
"xcm-executor/runtime-benchmarks",
|
"xcm-executor/runtime-benchmarks",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|||||||
@@ -228,10 +228,7 @@ impl pallet_timestamp::Config for Runtime {
|
|||||||
/// A timestamp: milliseconds since the unix epoch.
|
/// A timestamp: milliseconds since the unix epoch.
|
||||||
type Moment = u64;
|
type Moment = u64;
|
||||||
type OnTimestampSet = Aura;
|
type OnTimestampSet = Aura;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type MinimumPeriod = ConstU64<0>;
|
type MinimumPeriod = ConstU64<0>;
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>;
|
|
||||||
type WeightInfo = ();
|
type WeightInfo = ();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -594,7 +591,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
type AllowMultipleBlocksPerSlot = ConstBool<true>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -86,6 +86,3 @@ sp-version = { path = "../../substrate/primitives/version" }
|
|||||||
|
|
||||||
# XCM
|
# XCM
|
||||||
xcm = { package = "staging-xcm", path = "../../polkadot/xcm" }
|
xcm = { package = "staging-xcm", path = "../../polkadot/xcm" }
|
||||||
|
|
||||||
[features]
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|||||||
@@ -110,7 +110,6 @@ mod tests {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Self>;
|
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Self>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
# Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0
|
||||||
|
# See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json
|
||||||
|
|
||||||
|
title: Remove `experimental` feature from `pallet-aura`
|
||||||
|
|
||||||
|
doc:
|
||||||
|
- audience: Runtime Dev
|
||||||
|
description: |
|
||||||
|
The `experimental` feature in `pallet-aura`, previously used to gate different experimental
|
||||||
|
changes, became redundant with the introduction of the async backing which relies on the
|
||||||
|
mentioned changes, therefore, it is removed.
|
||||||
|
|
||||||
|
crates:
|
||||||
|
- name: pallet-aura
|
||||||
@@ -66,9 +66,6 @@ const LOG_TARGET: &str = "runtime::aura";
|
|||||||
///
|
///
|
||||||
/// This was the default behavior of the Aura pallet and may be used for
|
/// This was the default behavior of the Aura pallet and may be used for
|
||||||
/// backwards compatibility.
|
/// backwards compatibility.
|
||||||
///
|
|
||||||
/// Note that this type is likely not useful without the `experimental`
|
|
||||||
/// feature.
|
|
||||||
pub struct MinimumPeriodTimesTwo<T>(sp_std::marker::PhantomData<T>);
|
pub struct MinimumPeriodTimesTwo<T>(sp_std::marker::PhantomData<T>);
|
||||||
|
|
||||||
impl<T: pallet_timestamp::Config> Get<T::Moment> for MinimumPeriodTimesTwo<T> {
|
impl<T: pallet_timestamp::Config> Get<T::Moment> for MinimumPeriodTimesTwo<T> {
|
||||||
@@ -117,10 +114,6 @@ pub mod pallet {
|
|||||||
/// The effective value of this type should not change while the chain is running.
|
/// The effective value of this type should not change while the chain is running.
|
||||||
///
|
///
|
||||||
/// For backwards compatibility either use [`MinimumPeriodTimesTwo`] or a const.
|
/// For backwards compatibility either use [`MinimumPeriodTimesTwo`] or a const.
|
||||||
///
|
|
||||||
/// This associated type is only present when compiled with the `experimental`
|
|
||||||
/// feature.
|
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration: Get<<Self as pallet_timestamp::Config>::Moment>;
|
type SlotDuration: Get<<Self as pallet_timestamp::Config>::Moment>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -250,17 +243,7 @@ impl<T: Config> Pallet<T> {
|
|||||||
|
|
||||||
/// Determine the Aura slot-duration based on the Timestamp module configuration.
|
/// Determine the Aura slot-duration based on the Timestamp module configuration.
|
||||||
pub fn slot_duration() -> T::Moment {
|
pub fn slot_duration() -> T::Moment {
|
||||||
#[cfg(feature = "experimental")]
|
T::SlotDuration::get()
|
||||||
{
|
|
||||||
T::SlotDuration::get()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(not(feature = "experimental"))]
|
|
||||||
{
|
|
||||||
// we double the minimum block-period so each author can always propose within
|
|
||||||
// the majority of its slot.
|
|
||||||
<T as pallet_timestamp::Config>::MinimumPeriod::get().saturating_mul(2u32.into())
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Ensure the correctness of the state of this pallet.
|
/// Ensure the correctness of the state of this pallet.
|
||||||
|
|||||||
@@ -84,8 +84,6 @@ impl pallet_aura::Config for Test {
|
|||||||
type DisabledValidators = MockDisabledValidators;
|
type DisabledValidators = MockDisabledValidators;
|
||||||
type MaxAuthorities = ConstU32<10>;
|
type MaxAuthorities = ConstU32<10>;
|
||||||
type AllowMultipleBlocksPerSlot = AllowMultipleBlocksPerSlot;
|
type AllowMultipleBlocksPerSlot = AllowMultipleBlocksPerSlot;
|
||||||
|
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = ConstU64<SLOT_DURATION>;
|
type SlotDuration = ConstU64<SLOT_DURATION>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -194,5 +194,3 @@ try-runtime = [
|
|||||||
"polkadot-runtime-common/try-runtime",
|
"polkadot-runtime-common/try-runtime",
|
||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|||||||
@@ -453,7 +453,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<100_000>;
|
type MaxAuthorities = ConstU32<100_000>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Self>;
|
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Self>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -147,5 +147,3 @@ try-runtime = [
|
|||||||
"pallet-transaction-payment/try-runtime",
|
"pallet-transaction-payment/try-runtime",
|
||||||
"sp-runtime/try-runtime",
|
"sp-runtime/try-runtime",
|
||||||
]
|
]
|
||||||
|
|
||||||
experimental = ["pallet-aura/experimental"]
|
|
||||||
|
|||||||
@@ -180,8 +180,6 @@ impl pallet_aura::Config for Runtime {
|
|||||||
type DisabledValidators = ();
|
type DisabledValidators = ();
|
||||||
type MaxAuthorities = ConstU32<32>;
|
type MaxAuthorities = ConstU32<32>;
|
||||||
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
type AllowMultipleBlocksPerSlot = ConstBool<false>;
|
||||||
|
|
||||||
#[cfg(feature = "experimental")]
|
|
||||||
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Runtime>;
|
type SlotDuration = pallet_aura::MinimumPeriodTimesTwo<Runtime>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user