Skip to content

Commit 52283eb

Browse files
committed
Use type
1 parent 0e41263 commit 52283eb

File tree

34 files changed

+159
-58
lines changed

34 files changed

+159
-58
lines changed

Cargo.lock

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration-tests/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ pallet-elections-phragmen.workspace = true
5151
pallet-message-queue.workspace = true
5252
cumulus-primitives-core.workspace = true
5353
cumulus-pallet-xcm.workspace = true
54+
cumulus-pallet-parachain-system.workspace = true
5455

5556
parachain-info.workspace = true
5657
parachains-common.workspace = true

integration-tests/src/tests/e2e.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ fn e2e_test() {
583583
assert_close_enough!(sub_account_held_plmc, plmc_balance, Perquintill::from_float(0.999));
584584

585585
let otm_duration = Multiplier::force_new(5).calculate_vesting_duration::<PolimecRuntime>();
586-
let now = PolimecSystem::block_number();
586+
let now = PolkadotSystem::block_number();
587587
inst.jump_to_block(now + otm_duration);
588588

589589
let treasury_account = <PolimecRuntime as pallet_proxy_bonding::Config>::Treasury::get();

pallets/democracy/src/lib.rs

+17-12
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,10 @@ use frame_support::{
160160
},
161161
weights::Weight,
162162
};
163-
use frame_system::pallet_prelude::{BlockNumberFor, OriginFor};
163+
use frame_system::pallet_prelude::OriginFor;
164164
use parity_scale_codec::{Decode, Encode};
165165
use sp_runtime::{
166-
traits::{Bounded as ArithBounded, One, Saturating, StaticLookup, Zero},
166+
traits::{BlockNumberProvider, Bounded as ArithBounded, One, Saturating, StaticLookup, Zero},
167167
ArithmeticError, DispatchError, DispatchResult,
168168
};
169169

@@ -198,11 +198,12 @@ pub type CreditOf<T> = Credit<<T as frame_system::Config>::AccountId, <T as Conf
198198

199199
pub type CallOf<T> = <T as frame_system::Config>::RuntimeCall;
200200
pub type BoundedCallOf<T> = Bounded<CallOf<T>, <T as frame_system::Config>::Hashing>;
201+
pub type BlockNumberFor<T> = <<T as Config>::BlockNumberProvider as BlockNumberProvider>::BlockNumber;
201202
type AccountIdLookupOf<T> = <<T as frame_system::Config>::Lookup as StaticLookup>::Source;
202203

203204
#[frame_support::pallet]
204205
pub mod pallet {
205-
use super::{DispatchResult, *};
206+
use super::{BlockNumberFor, DispatchResult, *};
206207
use frame_support::{
207208
pallet_prelude::*,
208209
traits::{
@@ -211,6 +212,7 @@ pub mod pallet {
211212
},
212213
};
213214
use frame_system::pallet_prelude::*;
215+
use sp_runtime::traits::BlockNumberProvider;
214216
/// The current storage version.
215217
const STORAGE_VERSION: StorageVersion = StorageVersion::new(1);
216218

@@ -349,6 +351,9 @@ pub mod pallet {
349351

350352
/// Type returning the total electorate.
351353
type Electorate: GetElectorate<BalanceOf<Self>>;
354+
355+
/// Block number provider.
356+
type BlockNumberProvider: BlockNumberProvider<BlockNumber = frame_system::pallet_prelude::BlockNumberFor<Self>>;
352357
}
353358

354359
/// The number of (public) proposals that have been made so far.
@@ -609,7 +614,7 @@ pub mod pallet {
609614
let proposal_hash = proposal.hash();
610615

611616
if let Some((until, _)) = <Blacklist<T>>::get(proposal_hash) {
612-
ensure!(<frame_system::Pallet<T>>::block_number() >= until, Error::<T>::ProposalBlacklisted,);
617+
ensure!(T::BlockNumberProvider::current_block_number() >= until, Error::<T>::ProposalBlacklisted,);
613618
}
614619

615620
T::Fungible::hold(&HoldReason::Proposal.into(), &who, value)?;
@@ -699,7 +704,7 @@ pub mod pallet {
699704
T::ExternalOrigin::ensure_origin(origin)?;
700705
ensure!(!<NextExternal<T>>::exists(), Error::<T>::DuplicateProposal);
701706
if let Some((until, _)) = <Blacklist<T>>::get(proposal.hash()) {
702-
ensure!(<frame_system::Pallet<T>>::block_number() >= until, Error::<T>::ProposalBlacklisted,);
707+
ensure!(T::BlockNumberProvider::current_block_number() >= until, Error::<T>::ProposalBlacklisted,);
703708
}
704709
<NextExternal<T>>::put((proposal, VoteThreshold::SuperMajorityApprove));
705710
Ok(())
@@ -789,7 +794,7 @@ pub mod pallet {
789794
ensure!(proposal_hash == ext_proposal.hash(), Error::<T>::InvalidHash);
790795

791796
<NextExternal<T>>::kill();
792-
let now = <frame_system::Pallet<T>>::block_number();
797+
let now = T::BlockNumberProvider::current_block_number();
793798
let ref_index = Self::inject_referendum(now.saturating_add(voting_period), ext_proposal, threshold, delay);
794799
Self::transfer_metadata(MetadataOwner::External, MetadataOwner::Referendum(ref_index));
795800
Ok(())
@@ -819,7 +824,7 @@ pub mod pallet {
819824
let insert_position = existing_vetoers.binary_search(&who).err().ok_or(Error::<T>::AlreadyVetoed)?;
820825
existing_vetoers.try_insert(insert_position, who.clone()).map_err(|_| Error::<T>::TooMany)?;
821826

822-
let until = <frame_system::Pallet<T>>::block_number().saturating_add(T::CooloffPeriod::get());
827+
let until = T::BlockNumberProvider::current_block_number().saturating_add(T::CooloffPeriod::get());
823828
<Blacklist<T>>::insert(&proposal_hash, (until, existing_vetoers));
824829

825830
Self::deposit_event(Event::<T>::Vetoed { who, proposal_hash, until });
@@ -1195,7 +1200,7 @@ impl<T: Config> Pallet<T> {
11951200
delay: BlockNumberFor<T>,
11961201
) -> ReferendumIndex {
11971202
<Pallet<T>>::inject_referendum(
1198-
<frame_system::Pallet<T>>::block_number().saturating_add(T::VotingPeriod::get()),
1203+
T::BlockNumberProvider::current_block_number().saturating_add(T::VotingPeriod::get()),
11991204
proposal,
12001205
threshold,
12011206
delay,
@@ -1290,7 +1295,7 @@ impl<T: Config> Pallet<T> {
12901295
if let Some((lock_periods, balance)) = votes[i].1.locked_if(approved) {
12911296
let unlock_at =
12921297
end.saturating_add(T::VoteLockingPeriod::get().saturating_mul(lock_periods.into()));
1293-
let now = frame_system::Pallet::<T>::block_number();
1298+
let now = T::BlockNumberProvider::current_block_number();
12941299
if now < unlock_at {
12951300
ensure!(matches!(scope, UnvoteScope::Any), Error::<T>::NoPermission);
12961301
prior.accumulate(unlock_at, balance)
@@ -1379,7 +1384,7 @@ impl<T: Config> Pallet<T> {
13791384
Voting::Delegating { balance, target, conviction, delegations, mut prior, .. } => {
13801385
// remove any delegation votes to our current target.
13811386
Self::reduce_upstream_delegation(&target, conviction.votes(balance));
1382-
let now = frame_system::Pallet::<T>::block_number();
1387+
let now = T::BlockNumberProvider::current_block_number();
13831388
let lock_periods = conviction.lock_periods().into();
13841389
let unlock_block = now.saturating_add(T::VoteLockingPeriod::get().saturating_mul(lock_periods));
13851390
prior.accumulate(unlock_block, balance);
@@ -1412,7 +1417,7 @@ impl<T: Config> Pallet<T> {
14121417
Voting::Delegating { balance, target, conviction, delegations, mut prior } => {
14131418
// remove any delegation votes to our current target.
14141419
let votes = Self::reduce_upstream_delegation(&target, conviction.votes(balance));
1415-
let now = frame_system::Pallet::<T>::block_number();
1420+
let now = T::BlockNumberProvider::current_block_number();
14161421
let lock_periods = conviction.lock_periods().into();
14171422
let unlock_block = now.saturating_add(T::VoteLockingPeriod::get().saturating_mul(lock_periods));
14181423
prior.accumulate(unlock_block, balance);
@@ -1431,7 +1436,7 @@ impl<T: Config> Pallet<T> {
14311436
/// a security hole) but may be reduced from what they are currently.
14321437
fn update_lock(who: &T::AccountId) -> DispatchResult {
14331438
let lock_needed = VotingOf::<T>::mutate(who, |voting| {
1434-
voting.rejig(frame_system::Pallet::<T>::block_number());
1439+
voting.rejig(T::BlockNumberProvider::current_block_number());
14351440
voting.locked_balance()
14361441
});
14371442
if lock_needed.is_zero() {

pallets/democracy/src/tests.rs

+1
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ impl GetElectorate<BalanceOf<Test>> for Electorate {
148148

149149
impl Config for Test {
150150
type BlacklistOrigin = EnsureRoot<u64>;
151+
type BlockNumberProvider = System;
151152
type CancelProposalOrigin = EnsureRoot<u64>;
152153
type CancellationOrigin = EnsureSignedBy<Four, u64>;
153154
type CooloffPeriod = ConstU64<2>;

pallets/dispenser/src/lib.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pub mod pallet {
5555
pallet_prelude::{ValueQuery, *},
5656
PalletId,
5757
};
58-
use frame_system::pallet_prelude::*;
58+
use frame_system::pallet_prelude::{BlockNumberFor, *};
5959
use sp_runtime::{
6060
traits::{AccountIdConversion, CheckedDiv},
6161
Saturating,
@@ -115,6 +115,9 @@ pub mod pallet {
115115
/// The Whitelisted policy for the dispenser. Users' credentials should have the same
116116
/// policy to be eligible for token dispensing.
117117
type WhitelistedPolicy: Get<Cid>;
118+
119+
// /// Block number provider.
120+
// type BlockNumberProvider: BlockNumberProvider<BlockNumber = BlockNumberFor<Self>>;
118121
}
119122

120123
#[pallet::pallet]

pallets/funding/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ hex.workspace = true
5151
# Used in the instantiator.
5252
itertools.workspace = true
5353
sp-io.workspace = true
54+
cumulus-pallet-parachain-system.workspace = true
55+
cumulus-primitives-core.workspace = true
5456

5557
[dev-dependencies]
5658
pallet-timestamp.workspace = true

pallets/funding/src/benchmarking.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ pub fn string_account<AccountId: Decode>(
9595

9696
#[benchmarks(
9797
where
98-
T: Config + frame_system::Config<RuntimeEvent = <T as Config>::RuntimeEvent> + pallet_balances::Config<Balance = Balance> + sp_std::fmt::Debug,
98+
T: Config + frame_system::Config<RuntimeEvent = <T as Config>::RuntimeEvent> + pallet_balances::Config<Balance = Balance> + cumulus_pallet_parachain_system::Config + sp_std::fmt::Debug,
9999
<T as Config>::RuntimeEvent: TryInto<Event<T>> + Parameter + Member,
100100
<T as Config>::Price: From<u128>,
101101
T::Hash: From<H256>,

pallets/funding/src/functions/2_evaluation.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ impl<T: Config> Pallet<T> {
8484
// * Get variables *
8585
let project_metadata = ProjectsMetadata::<T>::get(project_id).ok_or(Error::<T>::ProjectMetadataNotFound)?;
8686
let mut project_details = ProjectsDetails::<T>::get(project_id).ok_or(Error::<T>::ProjectDetailsNotFound)?;
87-
let now = <frame_system::Pallet<T>>::block_number();
87+
let now = <T as Config>::BlockNumberProvider::current_block_number();
8888
let evaluation_id = NextEvaluationId::<T>::get();
8989
let plmc_usd_price =
9090
<PriceProviderOf<T>>::get_decimals_aware_price(Location::here(), USD_DECIMALS, PLMC_DECIMALS)

pallets/funding/src/functions/3_auction.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ impl<T: Config> Pallet<T> {
2222

2323
// Fetch current bucket details and other required info
2424
let mut current_bucket = Buckets::<T>::get(project_id).ok_or(Error::<T>::BucketNotFound)?;
25-
let now = <frame_system::Pallet<T>>::block_number();
25+
let now = <T as Config>::BlockNumberProvider::current_block_number();
2626
let mut amount_to_bid = ct_amount;
2727
let project_policy = project_metadata.policy_ipfs_cid.ok_or(Error::<T>::ImpossibleState)?;
2828

pallets/funding/src/functions/4_funding_end.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ impl<T: Config> Pallet<T> {
99
let project_metadata = ProjectsMetadata::<T>::get(project_id).ok_or(Error::<T>::ProjectMetadataNotFound)?;
1010
let mut project_details = ProjectsDetails::<T>::get(project_id).ok_or(Error::<T>::ProjectDetailsNotFound)?;
1111
let bucket = Buckets::<T>::get(project_id).ok_or(Error::<T>::BucketNotFound)?;
12-
let now = <frame_system::Pallet<T>>::block_number();
12+
let now = <T as Config>::BlockNumberProvider::current_block_number();
1313
let issuer_did = project_details.issuer_did.clone();
1414
let ct_amount_oversubscribed = CTAmountOversubscribed::<T>::get(project_id);
1515

pallets/funding/src/functions/5_settlement.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ impl<T: Config> Pallet<T> {
2828
let mut project_details = ProjectsDetails::<T>::get(project_id).ok_or(Error::<T>::ProjectDetailsNotFound)?;
2929
let token_information =
3030
ProjectsMetadata::<T>::get(project_id).ok_or(Error::<T>::ProjectMetadataNotFound)?.token_information;
31-
let now = <frame_system::Pallet<T>>::block_number();
31+
let now = <T as Config>::BlockNumberProvider::current_block_number();
3232

3333
project_details.funding_end_block = Some(now);
3434

@@ -38,7 +38,7 @@ impl<T: Config> Pallet<T> {
3838
let multiplier: MultiplierOf<T> =
3939
ParticipationMode::OTM.multiplier().try_into().map_err(|_| Error::<T>::ImpossibleState)?;
4040
let duration = multiplier.calculate_vesting_duration::<T>();
41-
let now = <frame_system::Pallet<T>>::block_number();
41+
let now = <T as Config>::BlockNumberProvider::current_block_number();
4242
ReleaseType::Locked(duration.saturating_add(now))
4343
};
4444
<pallet_proxy_bonding::Pallet<T>>::set_release_type(

pallets/funding/src/functions/misc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ impl<T: Config> Pallet<T> {
263263
skip_end_check: bool,
264264
) -> DispatchResult {
265265
/* Verify */
266-
let now = <frame_system::Pallet<T>>::block_number();
266+
let now = <T as Config>::BlockNumberProvider::current_block_number();
267267
ensure!(project_details.status == current_round, Error::<T>::IncorrectRound);
268268
ensure!(project_details.round_duration.ended(now) || skip_end_check, Error::<T>::TooEarlyForRound);
269269

pallets/funding/src/functions/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ use frame_support::{
1616
},
1717
transactional,
1818
};
19-
use frame_system::pallet_prelude::BlockNumberFor;
2019
use polimec_common::{
2120
credentials::{Did, InvestorType},
2221
USD_DECIMALS,

pallets/funding/src/functions/runtime_api.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ impl<T: Config> Pallet<T> {
237237
.enumerate()
238238
// Filter out schedules with future starting blocks before collecting them into a vector.
239239
.filter_map(|(i, schedule)| {
240-
if schedule.starting_block > <frame_system::Pallet<T>>::block_number() {
240+
if schedule.starting_block > <T as Config>::BlockNumberProvider::current_block_number() {
241241
None
242242
} else {
243243
Some((i, schedule.ending_block_as_balance::<BlockNumberToBalanceOf<T>>()))

pallets/funding/src/instantiator/calculations.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use sp_runtime::traits::TrailingZeroInput;
1212
use InvestorType::{self, *};
1313

1414
impl<
15-
T: Config,
15+
T: Config + cumulus_pallet_parachain_system::Config,
1616
AllPalletsWithoutSystem: OnFinalize<BlockNumberFor<T>> + OnIdle<BlockNumberFor<T>> + OnInitialize<BlockNumberFor<T>>,
1717
RuntimeEvent: From<Event<T>> + TryInto<Event<T>> + Parameter + Member + IsType<<T as frame_system::Config>::RuntimeEvent>,
1818
> Instantiator<T, AllPalletsWithoutSystem, RuntimeEvent>

pallets/funding/src/instantiator/chain_interactions.rs

+39-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use polimec_common::assets::AcceptedFundingAsset;
66

77
// general chain interactions
88
impl<
9-
T: Config + pallet_balances::Config<Balance = Balance>,
9+
T: Config + pallet_balances::Config<Balance = Balance> + cumulus_pallet_parachain_system::Config,
1010
AllPalletsWithoutSystem: OnFinalize<BlockNumberFor<T>> + OnIdle<BlockNumberFor<T>> + OnInitialize<BlockNumberFor<T>>,
1111
RuntimeEvent: From<Event<T>> + TryInto<Event<T>> + Parameter + Member + IsType<<T as frame_system::Config>::RuntimeEvent>,
1212
> Instantiator<T, AllPalletsWithoutSystem, RuntimeEvent>
@@ -144,13 +144,13 @@ impl<
144144
}
145145

146146
pub fn current_block(&mut self) -> BlockNumberFor<T> {
147-
self.execute(|| frame_system::Pallet::<T>::block_number())
147+
self.execute(|| <T as Config>::BlockNumberProvider::current_block_number())
148148
}
149149

150150
pub fn advance_time(&mut self, amount: BlockNumberFor<T>) {
151151
self.execute(|| {
152152
for _block in 0u32..amount.saturated_into() {
153-
let mut current_block = frame_system::Pallet::<T>::block_number();
153+
let mut current_block = <T as Config>::BlockNumberProvider::current_block_number();
154154

155155
<AllPalletsWithoutSystem as OnFinalize<BlockNumberFor<T>>>::on_finalize(current_block);
156156
<frame_system::Pallet<T> as OnFinalize<BlockNumberFor<T>>>::on_finalize(current_block);
@@ -164,13 +164,21 @@ impl<
164164
<frame_system::Pallet<T> as OnInitialize<BlockNumberFor<T>>>::on_initialize(current_block);
165165
<AllPalletsWithoutSystem as OnInitialize<BlockNumberFor<T>>>::on_initialize(current_block);
166166
}
167-
})
167+
});
168+
169+
let current_block = self.current_block();
170+
// in case we are relying on parachain system
171+
self.set_relay_chain_block_number(current_block + amount);
168172
}
169173

170174
pub fn jump_to_block(&mut self, block: BlockNumberFor<T>) {
171175
let current_block = self.current_block();
172176
if block > current_block {
173-
self.execute(|| frame_system::Pallet::<T>::set_block_number(block - One::one()));
177+
self.execute(|| {
178+
frame_system::Pallet::<T>::set_block_number(block - One::one());
179+
});
180+
self.set_relay_chain_block_number(block - One::one());
181+
174182
self.advance_time(One::one());
175183
} else {
176184
// panic!("Cannot jump to a block in the present or past")
@@ -216,11 +224,35 @@ impl<
216224
});
217225
}
218226
}
227+
228+
/// NOTE: this is a workaround function to advance relaychain's block number, since
229+
/// `<T as Config>::BlockNumberProvider::set_block_number` is not working in tests
230+
///
231+
/// It is cloned version of the above trait function implementation in [`cumulus_pallet_parachain_system::RelaychainDataProvider`]
232+
///
233+
/// TODO: remove this function once the issue is fixed
234+
pub fn set_relay_chain_block_number(&mut self, to: BlockNumberFor<T>) {
235+
use cumulus_pallet_parachain_system::ValidationData;
236+
use cumulus_primitives_core::PersistedValidationData;
237+
238+
self.execute(|| {
239+
let mut validation_data = ValidationData::<T>::get().unwrap_or_else(||
240+
// PersistedValidationData does not impl default in non-std
241+
PersistedValidationData {
242+
parent_head: vec![].into(),
243+
relay_parent_number: Default::default(),
244+
max_pov_size: Default::default(),
245+
relay_parent_storage_root: Default::default(),
246+
});
247+
validation_data.relay_parent_number = to.saturated_into();
248+
ValidationData::<T>::put(validation_data)
249+
});
250+
}
219251
}
220252

221253
// assertions
222254
impl<
223-
T: Config + pallet_balances::Config<Balance = Balance>,
255+
T: Config + pallet_balances::Config<Balance = Balance> + cumulus_pallet_parachain_system::Config,
224256
AllPalletsWithoutSystem: OnFinalize<BlockNumberFor<T>> + OnIdle<BlockNumberFor<T>> + OnInitialize<BlockNumberFor<T>>,
225257
RuntimeEvent: From<Event<T>> + TryInto<Event<T>> + Parameter + Member + IsType<<T as frame_system::Config>::RuntimeEvent>,
226258
> Instantiator<T, AllPalletsWithoutSystem, RuntimeEvent>
@@ -327,7 +359,7 @@ impl<
327359

328360
// project chain interactions
329361
impl<
330-
T: Config + pallet_balances::Config<Balance = Balance>,
362+
T: Config + pallet_balances::Config<Balance = Balance> + cumulus_pallet_parachain_system::Config,
331363
AllPalletsWithoutSystem: OnFinalize<BlockNumberFor<T>> + OnIdle<BlockNumberFor<T>> + OnInitialize<BlockNumberFor<T>>,
332364
RuntimeEvent: From<Event<T>> + TryInto<Event<T>> + Parameter + Member + IsType<<T as frame_system::Config>::RuntimeEvent>,
333365
> Instantiator<T, AllPalletsWithoutSystem, RuntimeEvent>

pallets/funding/src/instantiator/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ use frame_support::{
2828
weights::Weight,
2929
Parameter,
3030
};
31-
use frame_system::pallet_prelude::BlockNumberFor;
3231
use itertools::Itertools;
3332
use parity_scale_codec::Decode;
3433
use polimec_common::{credentials::InvestorType, migration_types::MigrationOrigin};

0 commit comments

Comments
 (0)