@@ -110,7 +110,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
110110 spec_name : create_runtime_str ! ( "bifrost" ) ,
111111 impl_name : create_runtime_str ! ( "bifrost" ) ,
112112 authoring_version : 1 ,
113- spec_version : 802 ,
113+ spec_version : 803 ,
114114 impl_version : 0 ,
115115 apis : RUNTIME_API_VERSIONS ,
116116 transaction_version : 1 ,
@@ -164,7 +164,8 @@ impl Filter<Call> for CallFilter {
164164 Call :: Balances ( _) => false ,
165165 Call :: Vesting ( _) => false ,
166166 Call :: Tokens ( _) => false ,
167- Call :: Currencies ( _) => false ,
167+ Call :: PhragmenElection ( _) => false ,
168+ Call :: Currencies ( orml_currencies:: Call :: transfer_native_currency( ..) ) => false ,
168169 _ => true ,
169170 }
170171 }
@@ -451,8 +452,7 @@ impl pallet_democracy::Config for Runtime {
451452 type PreimageByteDeposit = PreimageByteDeposit ;
452453 type Proposal = Call ;
453454 type Scheduler = Scheduler ;
454- // NOTE: Treasury replaced by `()`.
455- type Slash = ( ) ;
455+ type Slash = Treasury ;
456456 // Any single technical committee member may veto a coming council proposal, however they can
457457 // only do it once and it lasts only for the cool-off period.
458458 type VetoOrigin = pallet_collective:: EnsureMember < AccountId , TechnicalCollective > ;
@@ -521,7 +521,7 @@ impl pallet_tips::Config for Runtime {
521521 type TipCountdown = TipCountdown ;
522522 type TipFindersFee = TipFindersFee ;
523523 type TipReportDepositBase = TipReportDepositBase ;
524- type Tippers = Elections ;
524+ type Tippers = PhragmenElection ;
525525 type WeightInfo = pallet_tips:: weights:: SubstrateWeight < Runtime > ;
526526}
527527
@@ -874,7 +874,7 @@ construct_runtime! {
874874 Democracy : pallet_democracy:: { Pallet , Call , Storage , Config <T >, Event <T >} = 30 ,
875875 Council : pallet_collective:: <Instance1 >:: { Pallet , Call , Storage , Origin <T >, Event <T >, Config <T >} = 31 ,
876876 TechnicalCommittee : pallet_collective:: <Instance2 >:: { Pallet , Call , Storage , Origin <T >, Event <T >, Config <T >} = 32 ,
877- Elections : pallet_elections_phragmen:: { Pallet , Call , Storage , Event <T >, Config <T >} = 33 ,
877+ PhragmenElection : pallet_elections_phragmen:: { Pallet , Call , Storage , Event <T >, Config <T >} = 33 ,
878878 CouncilMembership : pallet_membership:: <Instance1 >:: { Pallet , Call , Storage , Event <T >, Config <T >} = 34 ,
879879 TechnicalMembership : pallet_membership:: <Instance2 >:: { Pallet , Call , Storage , Event <T >, Config <T >} = 35 ,
880880
@@ -938,7 +938,7 @@ pub type SignedExtra = (
938938 frame_system:: CheckEra < Runtime > ,
939939 frame_system:: CheckNonce < Runtime > ,
940940 frame_system:: CheckWeight < Runtime > ,
941- // pallet_transaction_payment::ChargeTransactionPayment<Runtime>,
941+ pallet_transaction_payment:: ChargeTransactionPayment < Runtime > ,
942942) ;
943943/// Unchecked extrinsic type as expected by this runtime.
944944pub type UncheckedExtrinsic = generic:: UncheckedExtrinsic < Address , Call , Signature , SignedExtra > ;
0 commit comments