From b0543531fb1d1b947ebf96544f710d5bb4d11fc8 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Tue, 4 Apr 2023 16:25:30 +0200 Subject: [PATCH] Remove old calls Removes calls that rely on the old weight and get removed in Substrate upstream. Companion for https://github.com/paritytech/substrate/pull/13699 and https://github.com/paritytech/polkadot/pull/7003 Signed-off-by: Oliver Tale-Yazdi --- .../runtimes/collectives/collectives-polkadot/src/xcm_config.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/xcm_config.rs b/parachains/runtimes/collectives/collectives-polkadot/src/xcm_config.rs index 799d1950a9ca..9ffd1422838e 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/xcm_config.rs +++ b/parachains/runtimes/collectives/collectives-polkadot/src/xcm_config.rs @@ -162,7 +162,6 @@ impl Contains for SafeCallFilter { // but the call can be initiated only by root origin. pallet_alliance::Call::init_members { .. } | pallet_alliance::Call::vote { .. } | - pallet_alliance::Call::close_old_weight { .. } | pallet_alliance::Call::disband { .. } | pallet_alliance::Call::set_rule { .. } | pallet_alliance::Call::announce { .. } | @@ -178,7 +177,6 @@ impl Contains for SafeCallFilter { ) | RuntimeCall::AllianceMotion( pallet_collective::Call::vote { .. } | - pallet_collective::Call::close_old_weight { .. } | pallet_collective::Call::disapprove_proposal { .. } | pallet_collective::Call::close { .. }, ) |