From 24df7e1b0b2b0850a0ffe5abfeabd42aebcab02a Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Mon, 26 Aug 2024 19:27:48 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20[Collectives]=20Add=20TX=20payme?= =?UTF-8?q?nt=20extension=20(#442)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🚨 Breaking Change 🚨 - This adds a signed extension for the polkadot-collectives runtime which will break transaction encoding. Status: waiting for https://github.com/polkadot-fellows/runtimes/pull/445 --------- Signed-off-by: Oliver Tale-Yazdi Co-authored-by: fellowship-merge-bot[bot] <151052383+fellowship-merge-bot[bot]@users.noreply.github.com> --- CHANGELOG.md | 6 ++++++ .../collectives/collectives-polkadot/src/lib.rs | 1 + 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 813ae52939..d50bcb3458 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.1] 23.08.2024 + +### Fixed + +- [🚨 Breaking Change] Polkadot Collectives: enable transaction payment ([polkadot-fellows/runtimes#442](https://github.com/polkadot-fellows/runtimes/pull/442)) + ## [1.3.0] 20.08.2024 ### Added diff --git a/system-parachains/collectives/collectives-polkadot/src/lib.rs b/system-parachains/collectives/collectives-polkadot/src/lib.rs index d798048d32..0ddd613f0c 100644 --- a/system-parachains/collectives/collectives-polkadot/src/lib.rs +++ b/system-parachains/collectives/collectives-polkadot/src/lib.rs @@ -760,6 +760,7 @@ pub type SignedExtra = ( frame_system::CheckEra, frame_system::CheckNonce, frame_system::CheckWeight, + pallet_transaction_payment::ChargeTransactionPayment, frame_metadata_hash_extension::CheckMetadataHash, ); /// Unchecked extrinsic type as expected by this runtime.