Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
1c0cac3
ahk: Enable ElasticScaling with 3 cores on asset hub kusama
lexnv Nov 24, 2025
b44d9a5
ahk: Expose RELAY_PARENT_OFFSET via runtime api
lexnv Nov 24, 2025
b6d1158
changelog: add PR
lexnv Nov 24, 2025
b1a8274
changelog: Change pr title name
lexnv Nov 24, 2025
e879851
Merge remote-tracking branch 'origin/main' into lexnv/es-3-cores-ahk
lexnv Dec 2, 2025
8928d30
kusama: Add elastic scaling constants
lexnv Dec 2, 2025
cf16fad
ahk: Add missing parent offset
lexnv Dec 2, 2025
13a3b08
Merge remote-tracking branch 'origin/main' into lexnv/es-3-cores-ahk
lexnv Dec 4, 2025
1e762d5
ahk: Disable tests that rely on the pending unreleased fix
lexnv Dec 4, 2025
6a5a09e
Update system-parachains/constants/src/kusama.rs
lexnv Dec 9, 2025
9f88bd3
Update CHANGELOG.md
lexnv Dec 9, 2025
4558185
Revert "ahk: Disable tests that rely on the pending unreleased fix"
lexnv Dec 9, 2025
a90eb65
Merge remote-tracking branch 'origin/main' into lexnv/es-3-cores-ahk
lexnv Dec 9, 2025
4d07c65
Update crates to unstable2507
TorstenStueber Dec 10, 2025
5137407
Merge branch 'main' of https://github.com/TorstenStueber/polkadot-run…
TorstenStueber Dec 10, 2025
e931c2e
Add PR feedback
TorstenStueber Dec 10, 2025
79d5244
Correct the WeightToFee multiplier
TorstenStueber Dec 11, 2025
78f1882
Disable fixture compilation for clippy
TorstenStueber Dec 11, 2025
43e1bb4
Merge branch 'main' into main
TorstenStueber Dec 11, 2025
82c8b76
Fix CI
TorstenStueber Dec 11, 2025
7871e45
Merge branch 'main' of https://github.com/TorstenStueber/polkadot-run…
TorstenStueber Dec 11, 2025
11e5bed
Fix fmt and change config values
TorstenStueber Dec 11, 2025
18a091f
Update Cargo.toml
claravanstaden Dec 12, 2025
85ca8d8
Merge branch 'main' into main
claravanstaden Dec 12, 2025
de4c664
bump staking async
Ank4n Dec 12, 2025
11a801c
update changelog
Ank4n Dec 12, 2025
ac82b80
fmt
Ank4n Dec 12, 2025
f370a24
Merge remote-tracking branch 'ank/upgrade-unstable-2507' into lexnv/e…
lexnv Dec 12, 2025
9e5030f
cargo: Update xcm-emulator to pass tests
lexnv Dec 12, 2025
240f570
Merge branch 'main' into lexnv/es-3-cores-ahk
acatangiu Dec 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bump staking async
  • Loading branch information
Ank4n committed Dec 12, 2025
commit de4c6644a0b7962cbfbfc735b30e892a8465bf4d
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pallet-ah-migrator = { path = "pallets/ah-migrator", default-features = false }
pallet-rc-migrator = { path = "pallets/rc-migrator", default-features = false }
pallet-ah-ops = { path = "pallets/ah-ops", default-features = false }
pallet-election-provider-multi-block = { version = "0.5.0", default-features = false }
pallet-staking-async = { version = "0.7.0", default-features = false }
pallet-staking-async = { version = "0.7.1", default-features = false }
hex = { version = "0.4.3", default-features = false }
rand = { version = "0.9.2" }
impl-trait-for-tuples = { version = "0.2.3", default-features = false }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@ impl pallet_staking_async::Config for Runtime {
type EventListeners = (NominationPools, DelegatedStaking);
// Note used; don't care.
type MaxInvulnerables = frame_support::traits::ConstU32<20>;
type PlanningEraOffset =
pallet_staking_async::PlanningEraOffsetOf<Self, RelaySessionDuration, ConstU32<10>>;
// This will start election for the next era as soon as an era starts.
type PlanningEraOffset = ConstU32<6>;
type RcClientInterface = StakingRcClient;
type MaxEraDuration = MaxEraDuration;
type WeightInfo = weights::pallet_staking_async::WeightInfo<Runtime>;
Expand All @@ -425,6 +425,8 @@ impl pallet_staking_async_rc_client::Config for Runtime {
type AHStakingInterface = Staking;
type SendToRelayChain = StakingXcmToRelayChain;
type MaxValidatorSetRetries = ConstU32<64>;
// Export elected validator set at end of session 4.
type ValidatorSetExportSession = ConstU32<4>;
}

#[derive(Encode, Decode)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,8 @@ impl pallet_staking_async_rc_client::Config for Runtime {
type AHStakingInterface = Staking;
type SendToRelayChain = StakingXcmToRelayChain;
type MaxValidatorSetRetries = ConstU32<64>;
// export validators as soon as election results are ready.
type ValidatorSetExportSession = ConstU32<0>;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cc: @sigurpol

}

#[derive(Encode, Decode)]
Expand Down
Loading