From e220854a081f30183999848ce6c11ca62647bcfa Mon Sep 17 00:00:00 2001 From: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Date: Tue, 27 Aug 2024 00:43:33 +0100 Subject: [PATCH] Keep kusama inflaton as-is. (#445) to be merged as part of 1.3.1 after https://github.com/polkadot-fellows/runtimes/pull/442 --------- Signed-off-by: Oliver Tale-Yazdi Co-authored-by: Oliver Tale-Yazdi --- CHANGELOG.md | 6 ++++++ relay/kusama/src/lib.rs | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d50bcb3458..c9e9397901 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ Changelog for the runtimes governed by the Polkadot Fellowship. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [1.3.2] 27.08.2024 + +### Fixed + +- Kusama: Revert accidental changes to inflation formula ([polkadot-fellows/runtimes#445](tps://github.com/polkadot-fellows/runtimes/pull/445)). + ## [1.3.1] 23.08.2024 ### Fixed diff --git a/relay/kusama/src/lib.rs b/relay/kusama/src/lib.rs index 5bd9c28a78..7653bead2d 100644 --- a/relay/kusama/src/lib.rs +++ b/relay/kusama/src/lib.rs @@ -665,7 +665,7 @@ pub mod dynamic_params { /// With the move to Agile Coretime, this parameter does not make much sense and should /// generally be set to false. #[codec(index = 4)] - pub static UseAuctionSlots: bool = false; + pub static UseAuctionSlots: bool = true; } }