Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
svyatonik committed Nov 29, 2023
1 parent c5a2c7f commit 3448aa8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,10 @@ pub type Barrier = TrailingSetTopicAsId<
AllowTopLevelPaidExecutionFrom<Everything>,
// Parent, its pluralities (i.e. governance bodies) and parent's treasury
// pallet get free execution.
AllowExplicitUnpaidExecutionFrom<(ParentOrParentsPlurality, Equals<RelayTreasuryLocation>)>,
AllowExplicitUnpaidExecutionFrom<(
ParentOrParentsPlurality,
Equals<RelayTreasuryLocation>,
)>,
// Subscriptions for version tracking are OK.
AllowSubscriptionsFrom<ParentOrSiblings>,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,12 @@ pub type Barrier = TrailingSetTopicAsId<
// If the message is one that immediately attemps to pay for execution, then
// allow it.
AllowTopLevelPaidExecutionFrom<Everything>,
// Parent and its pluralities (i.e. governance bodies) and relay treasury get free execution.
AllowExplicitUnpaidExecutionFrom<(ParentOrParentsPlurality, Equals<RelayTreasuryLocation>)>,
// Parent and its pluralities (i.e. governance bodies) and relay treasury get
// free execution.
AllowExplicitUnpaidExecutionFrom<(
ParentOrParentsPlurality,
Equals<RelayTreasuryLocation>,
)>,
// Subscriptions for version tracking are OK.
AllowSubscriptionsFrom<ParentOrSiblings>,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,12 @@ pub type Barrier = TrailingSetTopicAsId<
// If the message is one that immediately attemps to pay for execution, then
// allow it.
AllowTopLevelPaidExecutionFrom<Everything>,
// Parent and its pluralities (i.e. governance bodies) and relay treasury get free execution.
AllowExplicitUnpaidExecutionFrom<(ParentOrParentsPlurality, Equals<RelayTreasuryLocation>)>,
// Parent and its pluralities (i.e. governance bodies) and relay treasury get
// free execution.
AllowExplicitUnpaidExecutionFrom<(
ParentOrParentsPlurality,
Equals<RelayTreasuryLocation>,
)>,
// Subscriptions for version tracking are OK.
AllowSubscriptionsFrom<ParentOrSiblings>,
),
Expand Down

0 comments on commit 3448aa8

Please sign in to comment.