Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kianenigma committed Jan 16, 2025
1 parent 01adfe6 commit eedd03a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion polkadot/runtime/westend/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,8 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
matches!(
c,
RuntimeCall::Staking(..) |
RuntimeCall::Session(..) | RuntimeCall::Utility(..) |
RuntimeCall::Session(..) |
RuntimeCall::Utility(..) |
RuntimeCall::FastUnstake(..) |
RuntimeCall::VoterList(..) |
RuntimeCall::NominationPools(..)
Expand Down
4 changes: 3 additions & 1 deletion substrate/client/consensus/grandpa/src/aux_schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,9 @@ mod test {
substrate_test_runtime_client::runtime::Block,
_,
_,
>(&client, H256::random(), 0, || unreachable!())
>(
&client, H256::random(), 0, || unreachable!()
)
.unwrap();

assert_eq!(
Expand Down

0 comments on commit eedd03a

Please sign in to comment.