From cb1296e8b7eba69eba280f53e474341ee247699d Mon Sep 17 00:00:00 2001 From: Parth Desai Date: Mon, 26 Aug 2024 19:27:55 +0400 Subject: [PATCH 1/3] Make PendingConfigs storage item public --- polkadot/runtime/parachains/src/configuration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/runtime/parachains/src/configuration.rs b/polkadot/runtime/parachains/src/configuration.rs index d09962ef2b441..19df1f8c36073 100644 --- a/polkadot/runtime/parachains/src/configuration.rs +++ b/polkadot/runtime/parachains/src/configuration.rs @@ -557,7 +557,7 @@ pub mod pallet { /// The list is sorted ascending by session index. Also, this list can only contain at most /// 2 items: for the next session and for the `scheduled_session`. #[pallet::storage] - pub(crate) type PendingConfigs = + pub type PendingConfigs = StorageValue<_, Vec<(SessionIndex, HostConfiguration>)>, ValueQuery>; /// If this is set, then the configuration setters will bypass the consistency checks. This From 142fe0df8806100907dabb47fd1a72af2a4ffa2c Mon Sep 17 00:00:00 2001 From: Parth Desai Date: Tue, 27 Aug 2024 12:46:15 +0400 Subject: [PATCH 2/3] Add PRDoc --- prdoc/pr_5467.prdoc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 prdoc/pr_5467.prdoc diff --git a/prdoc/pr_5467.prdoc b/prdoc/pr_5467.prdoc new file mode 100644 index 0000000000000..d2652246697df --- /dev/null +++ b/prdoc/pr_5467.prdoc @@ -0,0 +1,10 @@ +title: Make PendingConfigs storage item public + +doc: + - audience: Runtime Dev + description: | + Make PendingConfigs storage item in polkadot's configuration crate public. + +crates: + - name: polkadot-runtime-parachains + bump: none \ No newline at end of file From 649a25591b399fb2dc73d37a919c8cbbbf33d5bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Tue, 27 Aug 2024 16:36:44 +0200 Subject: [PATCH 3/3] Update prdoc/pr_5467.prdoc --- prdoc/pr_5467.prdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prdoc/pr_5467.prdoc b/prdoc/pr_5467.prdoc index d2652246697df..2634c255e168f 100644 --- a/prdoc/pr_5467.prdoc +++ b/prdoc/pr_5467.prdoc @@ -7,4 +7,4 @@ doc: crates: - name: polkadot-runtime-parachains - bump: none \ No newline at end of file + bump: minor \ No newline at end of file