@@ -962,18 +962,21 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
962
962
RuntimeCall :: Slots ( ..) |
963
963
RuntimeCall :: Auctions ( ..) // Specifically omitting the entire XCM Pallet
964
964
) ,
965
- ProxyType :: Governance => matches ! (
966
- c,
967
- RuntimeCall :: Democracy ( ..) |
968
- RuntimeCall :: Council ( ..) | RuntimeCall :: TechnicalCommittee ( ..) |
969
- RuntimeCall :: PhragmenElection ( ..) |
970
- RuntimeCall :: Treasury ( ..) | RuntimeCall :: Bounties ( ..) |
971
- RuntimeCall :: Tips ( ..) | RuntimeCall :: Utility ( ..) |
972
- RuntimeCall :: ChildBounties ( ..)
973
- ) ,
965
+ ProxyType :: Governance =>
966
+ matches ! (
967
+ c,
968
+ RuntimeCall :: Democracy ( ..) |
969
+ RuntimeCall :: Council ( ..) | RuntimeCall :: TechnicalCommittee ( ..) |
970
+ RuntimeCall :: PhragmenElection ( ..) |
971
+ RuntimeCall :: Treasury ( ..) |
972
+ RuntimeCall :: Bounties ( ..) |
973
+ RuntimeCall :: Tips ( ..) | RuntimeCall :: Utility ( ..) |
974
+ RuntimeCall :: ChildBounties ( ..)
975
+ ) ,
974
976
ProxyType :: IdentityJudgement => matches ! (
975
977
c,
976
- RuntimeCall :: Identity ( pallet_identity:: Call :: provide_judgement { .. } ) | RuntimeCall :: Utility ( ..)
978
+ RuntimeCall :: Identity ( pallet_identity:: Call :: provide_judgement { .. } ) |
979
+ RuntimeCall :: Utility ( ..)
977
980
) ,
978
981
ProxyType :: CancelProxy => {
979
982
matches ! ( c, RuntimeCall :: Proxy ( pallet_proxy:: Call :: reject_announcement { .. } ) )
@@ -983,7 +986,8 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
983
986
RuntimeCall :: Auctions { .. } |
984
987
RuntimeCall :: Crowdloan { .. } |
985
988
RuntimeCall :: Registrar { .. } |
986
- RuntimeCall :: Multisig ( ..) | RuntimeCall :: Slots { .. }
989
+ RuntimeCall :: Multisig ( ..) |
990
+ RuntimeCall :: Slots { .. }
987
991
) ,
988
992
ProxyType :: Society => matches ! ( c, RuntimeCall :: Society ( ..) ) ,
989
993
}
@@ -1421,7 +1425,8 @@ pub type SignedExtra = (
1421
1425
) ;
1422
1426
1423
1427
/// Unchecked extrinsic type as expected by this runtime.
1424
- pub type UncheckedExtrinsic = generic:: UncheckedExtrinsic < Address , RuntimeCall , Signature , SignedExtra > ;
1428
+ pub type UncheckedExtrinsic =
1429
+ generic:: UncheckedExtrinsic < Address , RuntimeCall , Signature , SignedExtra > ;
1425
1430
/// Executive: handles dispatch to the various modules.
1426
1431
pub type Executive = frame_executive:: Executive <
1427
1432
Runtime ,
0 commit comments