Skip to content

Commit b2ae4df

Browse files
skunertbkchr
andauthored
Remove pov-reclaim from kusama system-chains (#423)
I propose to move PoV-reclaim to the next release. It can happen that the amount to reclaim is overestimated paritytech/polkadot-sdk#5229. Improvements (paritytech/polkadot-sdk#5281, paritytech/polkadot-sdk#5273) and a proper fix (paritytech/polkadot-sdk#5234) are in the works, but should be tested again. I expect the chances that the system-chains run into this scenario to be low, but it does not look like activity is so high that the inclusion of reclaim is urgent. --------- Co-authored-by: Bastian Köcher <git@kchr.de>
1 parent 9af02f7 commit b2ae4df

13 files changed

Lines changed: 0 additions & 38 deletions

File tree

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
4242
- Pallet-xcm: add new extrinsic for asset transfers using explicit reserve ([SDK v1.11 #3695](https://github.com/paritytech/polkadot-sdk/pull/3695)).
4343
- Ranked collective introduce `Add` and `Remove` origins ([SDK v1.8 #3212](https://github.com/paritytech/polkadot-sdk/pull/3212)).
4444
- Runtime apis to help with delegate-stake based Nomination Pools ([SDK v1.13 #4537](https://github.com/paritytech/polkadot-sdk/pull/4537)).
45-
- Kusama system chains: enable PoV-reclaim.
4645

4746
### Added
4847

Cargo.lock

Lines changed: 0 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ cumulus-pallet-xcmp-queue = { version = "0.15.0", default-features = false }
5555
cumulus-primitives-aura = { version = "0.14.0", default-features = false }
5656
cumulus-primitives-core = { version = "0.14.0", default-features = false }
5757
cumulus-primitives-utility = { version = "0.15.0", default-features = false }
58-
cumulus-primitives-storage-weight-reclaim = { version = "6.0.0", default-features = false }
5958
emulated-integration-tests-common = { version = "11.0.0" }
6059
encointer-balances-tx-payment = { version = "~13.1.0", default-features = false }
6160
encointer-balances-tx-payment-rpc-runtime-api = { version = "~13.1.0", default-features = false }

system-parachains/asset-hubs/asset-hub-kusama/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ cumulus-pallet-xcm = { workspace = true }
9393
cumulus-pallet-xcmp-queue = { features = ["bridging"], workspace = true }
9494
cumulus-primitives-aura = { workspace = true }
9595
cumulus-primitives-core = { workspace = true }
96-
cumulus-primitives-storage-weight-reclaim = { workspace = true }
9796
cumulus-primitives-utility = { workspace = true }
9897
pallet-collator-selection = { workspace = true }
9998
parachain-info = { workspace = true }
@@ -211,7 +210,6 @@ std = [
211210
"cumulus-pallet-xcmp-queue/std",
212211
"cumulus-primitives-aura/std",
213212
"cumulus-primitives-core/std",
214-
"cumulus-primitives-storage-weight-reclaim/std",
215213
"cumulus-primitives-utility/std",
216214
"frame-benchmarking?/std",
217215
"frame-executive/std",

system-parachains/asset-hubs/asset-hub-kusama/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,6 @@ pub type SignedExtra = (
10651065
frame_system::CheckWeight<Runtime>,
10661066
pallet_asset_conversion_tx_payment::ChargeAssetTxPayment<Runtime>,
10671067
frame_metadata_hash_extension::CheckMetadataHash<Runtime>,
1068-
cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<Runtime>,
10691068
);
10701069
/// Unchecked extrinsic type as expected by this runtime.
10711070
pub type UncheckedExtrinsic =

system-parachains/bridge-hubs/bridge-hub-kusama/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ cumulus-pallet-xcm = { workspace = true }
8282
cumulus-pallet-xcmp-queue = { features = ["bridging"], workspace = true }
8383
cumulus-primitives-aura = { workspace = true }
8484
cumulus-primitives-core = { workspace = true }
85-
cumulus-primitives-storage-weight-reclaim = { workspace = true }
8685
cumulus-primitives-utility = { workspace = true }
8786
pallet-collator-selection = { workspace = true }
8887
parachain-info = { workspace = true }
@@ -154,7 +153,6 @@ std = [
154153
"cumulus-pallet-xcmp-queue/std",
155154
"cumulus-primitives-aura/std",
156155
"cumulus-primitives-core/std",
157-
"cumulus-primitives-storage-weight-reclaim/std",
158156
"cumulus-primitives-utility/std",
159157
"frame-benchmarking?/std",
160158
"frame-executive/std",

system-parachains/bridge-hubs/bridge-hub-kusama/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ pub type SignedExtra = (
123123
BridgeRejectObsoleteHeadersAndMessages,
124124
bridge_to_polkadot_config::RefundBridgeHubPolkadotMessages,
125125
frame_metadata_hash_extension::CheckMetadataHash<Runtime>,
126-
cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<Runtime>,
127126
);
128127

129128
bridge_runtime_common::generate_bridge_reject_obsolete_headers_and_messages! {

system-parachains/bridge-hubs/bridge-hub-kusama/tests/snowbridge.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,6 @@ fn construct_extrinsic(
256256
BridgeRejectObsoleteHeadersAndMessages,
257257
(RefundBridgeHubPolkadotMessages::default()),
258258
frame_metadata_hash_extension::CheckMetadataHash::<Runtime>::new(false),
259-
cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim::<Runtime>::new(),
260259
);
261260
let payload = SignedPayload::new(call.clone(), extra.clone()).unwrap();
262261
let signature = payload.using_encoded(|e| sender.sign(e));

system-parachains/bridge-hubs/bridge-hub-kusama/tests/tests.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ fn construct_extrinsic(
8383
BridgeRejectObsoleteHeadersAndMessages,
8484
(RefundBridgeHubPolkadotMessages::default()),
8585
frame_metadata_hash_extension::CheckMetadataHash::<Runtime>::new(false),
86-
cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim::<Runtime>::new(),
8786
);
8887
let payload = SignedPayload::new(call.clone(), extra.clone()).unwrap();
8988
let signature = payload.using_encoded(|e| sender.sign(e));

system-parachains/coretime/coretime-kusama/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ cumulus-pallet-xcm = { workspace = true }
7474
cumulus-pallet-xcmp-queue = { workspace = true }
7575
cumulus-primitives-aura = { workspace = true }
7676
cumulus-primitives-core = { workspace = true }
77-
cumulus-primitives-storage-weight-reclaim = { workspace = true }
7877
cumulus-primitives-utility = { workspace = true }
7978
pallet-collator-selection = { workspace = true }
8079
parachain-info = { workspace = true }
@@ -97,7 +96,6 @@ std = [
9796
"cumulus-pallet-xcmp-queue/std",
9897
"cumulus-primitives-aura/std",
9998
"cumulus-primitives-core/std",
100-
"cumulus-primitives-storage-weight-reclaim/std",
10199
"cumulus-primitives-utility/std",
102100
"frame-benchmarking?/std",
103101
"frame-executive/std",

0 commit comments

Comments
 (0)