Skip to content

Commit 3dd3032

Browse files
committed
Simplify pallet naming
1 parent 343620a commit 3dd3032

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

runtime/mainnet/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ impl pallet_multisig::Config for Runtime {
610610
type DepositFactor = DepositFactor;
611611
type MaxSignatories = ConstU32<100>;
612612
type WeightInfo = weights::pallet_multisig::WeightInfo<Runtime>;
613-
type BlockNumberProvider = frame_system::Pallet<Runtime>;
613+
type BlockNumberProvider = System;
614614
}
615615

616616
impl pallet_aura::Config for Runtime {
@@ -909,7 +909,7 @@ impl pallet_proxy::Config for Runtime {
909909
type CallHasher = BlakeTwo256;
910910
type AnnouncementDepositBase = AnnouncementDepositBase;
911911
type AnnouncementDepositFactor = AnnouncementDepositFactor;
912-
type BlockNumberProvider = frame_system::Pallet<Runtime>;
912+
type BlockNumberProvider = System;
913913
}
914914

915915
parameter_types! {
@@ -932,7 +932,7 @@ impl pallet_scheduler::Config for Runtime {
932932
type MaxScheduledPerBlock = ConstU32<50>;
933933
type WeightInfo = weights::pallet_scheduler::WeightInfo<Runtime>;
934934
type Preimages = Preimage;
935-
type BlockNumberProvider = frame_system::Pallet<Runtime>;
935+
type BlockNumberProvider = System;
936936
}
937937

938938
parameter_types! {
@@ -1060,7 +1060,7 @@ impl pallet_treasury::Config for Runtime {
10601060
type Paymaster = PayFromAccount<Balances, TreasuryAccount>;
10611061
type BalanceConverter = UnityAssetBalanceConversion;
10621062
type PayoutPeriod = SpendPayoutPeriod;
1063-
type BlockNumberProvider = frame_system::Pallet<Runtime>;
1063+
type BlockNumberProvider = System;
10641064
#[cfg(feature = "runtime-benchmarks")]
10651065
type BenchmarkHelper = TreasuryBenchmarkHelper<Balances>;
10661066
}

runtime/testnet/src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ impl pallet_multisig::Config for Runtime {
621621
type DepositFactor = DepositFactor;
622622
type MaxSignatories = ConstU32<100>;
623623
type WeightInfo = weights::pallet_multisig::WeightInfo<Runtime>;
624-
type BlockNumberProvider = frame_system::Pallet<Runtime>;
624+
type BlockNumberProvider = System;
625625
}
626626

627627
impl pallet_aura::Config for Runtime {
@@ -862,7 +862,7 @@ impl pallet_proxy::Config for Runtime {
862862
type CallHasher = BlakeTwo256;
863863
type AnnouncementDepositBase = AnnouncementDepositBase;
864864
type AnnouncementDepositFactor = AnnouncementDepositFactor;
865-
type BlockNumberProvider = frame_system::Pallet<Runtime>;
865+
type BlockNumberProvider = System;
866866
}
867867

868868
impl pallet_escrow::Config for Runtime {
@@ -945,7 +945,7 @@ impl pallet_scheduler::Config for Runtime {
945945
type MaxScheduledPerBlock = ConstU32<50>;
946946
type WeightInfo = weights::pallet_scheduler::WeightInfo<Runtime>;
947947
type Preimages = Preimage;
948-
type BlockNumberProvider = frame_system::Pallet<Runtime>;
948+
type BlockNumberProvider = System;
949949
}
950950

951951
parameter_types! {
@@ -1073,7 +1073,7 @@ impl pallet_treasury::Config for Runtime {
10731073
type Paymaster = PayFromAccount<Balances, TreasuryAccount>;
10741074
type BalanceConverter = UnityAssetBalanceConversion;
10751075
type PayoutPeriod = SpendPayoutPeriod;
1076-
type BlockNumberProvider = frame_system::Pallet<Runtime>;
1076+
type BlockNumberProvider = System;
10771077
#[cfg(feature = "runtime-benchmarks")]
10781078
type BenchmarkHelper = TreasuryBenchmarkHelper<Balances>;
10791079
}

zombienet.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
ZOMBIENET_V=v1.3.128
6-
POLKADOT_V=stable2503-rc1
6+
POLKADOT_V=stable2503
77
POLKADOT_RUNTIMES_V=v1.4.2
88
PASEO_RUNTIMES_V=v1.4.1
99
BIN_DIR=./bin

0 commit comments

Comments
 (0)