@@ -160,10 +160,10 @@ use frame_support::{
160
160
} ,
161
161
weights:: Weight ,
162
162
} ;
163
- use frame_system:: pallet_prelude:: { BlockNumberFor , OriginFor } ;
163
+ use frame_system:: pallet_prelude:: OriginFor ;
164
164
use parity_scale_codec:: { Decode , Encode } ;
165
165
use sp_runtime:: {
166
- traits:: { Bounded as ArithBounded , One , Saturating , StaticLookup , Zero } ,
166
+ traits:: { BlockNumberProvider , Bounded as ArithBounded , One , Saturating , StaticLookup , Zero } ,
167
167
ArithmeticError , DispatchError , DispatchResult ,
168
168
} ;
169
169
@@ -198,11 +198,12 @@ pub type CreditOf<T> = Credit<<T as frame_system::Config>::AccountId, <T as Conf
198
198
199
199
pub type CallOf < T > = <T as frame_system:: Config >:: RuntimeCall ;
200
200
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 ;
201
202
type AccountIdLookupOf < T > = <<T as frame_system:: Config >:: Lookup as StaticLookup >:: Source ;
202
203
203
204
#[ frame_support:: pallet]
204
205
pub mod pallet {
205
- use super :: { DispatchResult , * } ;
206
+ use super :: { BlockNumberFor , DispatchResult , * } ;
206
207
use frame_support:: {
207
208
pallet_prelude:: * ,
208
209
traits:: {
@@ -211,6 +212,7 @@ pub mod pallet {
211
212
} ,
212
213
} ;
213
214
use frame_system:: pallet_prelude:: * ;
215
+ use sp_runtime:: traits:: BlockNumberProvider ;
214
216
/// The current storage version.
215
217
const STORAGE_VERSION : StorageVersion = StorageVersion :: new ( 1 ) ;
216
218
@@ -349,6 +351,9 @@ pub mod pallet {
349
351
350
352
/// Type returning the total electorate.
351
353
type Electorate : GetElectorate < BalanceOf < Self > > ;
354
+
355
+ /// Block number provider.
356
+ type BlockNumberProvider : BlockNumberProvider < BlockNumber = frame_system:: pallet_prelude:: BlockNumberFor < Self > > ;
352
357
}
353
358
354
359
/// The number of (public) proposals that have been made so far.
@@ -609,7 +614,7 @@ pub mod pallet {
609
614
let proposal_hash = proposal. hash ( ) ;
610
615
611
616
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 , ) ;
613
618
}
614
619
615
620
T :: Fungible :: hold ( & HoldReason :: Proposal . into ( ) , & who, value) ?;
@@ -699,7 +704,7 @@ pub mod pallet {
699
704
T :: ExternalOrigin :: ensure_origin ( origin) ?;
700
705
ensure ! ( !<NextExternal <T >>:: exists( ) , Error :: <T >:: DuplicateProposal ) ;
701
706
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 , ) ;
703
708
}
704
709
<NextExternal < T > >:: put ( ( proposal, VoteThreshold :: SuperMajorityApprove ) ) ;
705
710
Ok ( ( ) )
@@ -789,7 +794,7 @@ pub mod pallet {
789
794
ensure ! ( proposal_hash == ext_proposal. hash( ) , Error :: <T >:: InvalidHash ) ;
790
795
791
796
<NextExternal < T > >:: kill ( ) ;
792
- let now = <frame_system :: Pallet < T > > :: block_number ( ) ;
797
+ let now = T :: BlockNumberProvider :: current_block_number ( ) ;
793
798
let ref_index = Self :: inject_referendum ( now. saturating_add ( voting_period) , ext_proposal, threshold, delay) ;
794
799
Self :: transfer_metadata ( MetadataOwner :: External , MetadataOwner :: Referendum ( ref_index) ) ;
795
800
Ok ( ( ) )
@@ -819,7 +824,7 @@ pub mod pallet {
819
824
let insert_position = existing_vetoers. binary_search ( & who) . err ( ) . ok_or ( Error :: < T > :: AlreadyVetoed ) ?;
820
825
existing_vetoers. try_insert ( insert_position, who. clone ( ) ) . map_err ( |_| Error :: < T > :: TooMany ) ?;
821
826
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 ( ) ) ;
823
828
<Blacklist < T > >:: insert ( & proposal_hash, ( until, existing_vetoers) ) ;
824
829
825
830
Self :: deposit_event ( Event :: < T > :: Vetoed { who, proposal_hash, until } ) ;
@@ -1195,7 +1200,7 @@ impl<T: Config> Pallet<T> {
1195
1200
delay : BlockNumberFor < T > ,
1196
1201
) -> ReferendumIndex {
1197
1202
<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 ( ) ) ,
1199
1204
proposal,
1200
1205
threshold,
1201
1206
delay,
@@ -1290,7 +1295,7 @@ impl<T: Config> Pallet<T> {
1290
1295
if let Some ( ( lock_periods, balance) ) = votes[ i] . 1 . locked_if ( approved) {
1291
1296
let unlock_at =
1292
1297
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 ( ) ;
1294
1299
if now < unlock_at {
1295
1300
ensure ! ( matches!( scope, UnvoteScope :: Any ) , Error :: <T >:: NoPermission ) ;
1296
1301
prior. accumulate ( unlock_at, balance)
@@ -1379,7 +1384,7 @@ impl<T: Config> Pallet<T> {
1379
1384
Voting :: Delegating { balance, target, conviction, delegations, mut prior, .. } => {
1380
1385
// remove any delegation votes to our current target.
1381
1386
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 ( ) ;
1383
1388
let lock_periods = conviction. lock_periods ( ) . into ( ) ;
1384
1389
let unlock_block = now. saturating_add ( T :: VoteLockingPeriod :: get ( ) . saturating_mul ( lock_periods) ) ;
1385
1390
prior. accumulate ( unlock_block, balance) ;
@@ -1412,7 +1417,7 @@ impl<T: Config> Pallet<T> {
1412
1417
Voting :: Delegating { balance, target, conviction, delegations, mut prior } => {
1413
1418
// remove any delegation votes to our current target.
1414
1419
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 ( ) ;
1416
1421
let lock_periods = conviction. lock_periods ( ) . into ( ) ;
1417
1422
let unlock_block = now. saturating_add ( T :: VoteLockingPeriod :: get ( ) . saturating_mul ( lock_periods) ) ;
1418
1423
prior. accumulate ( unlock_block, balance) ;
@@ -1431,7 +1436,7 @@ impl<T: Config> Pallet<T> {
1431
1436
/// a security hole) but may be reduced from what they are currently.
1432
1437
fn update_lock ( who : & T :: AccountId ) -> DispatchResult {
1433
1438
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 ( ) ) ;
1435
1440
voting. locked_balance ( )
1436
1441
} ) ;
1437
1442
if lock_needed. is_zero ( ) {
0 commit comments