Skip to content

Commit

Permalink
Relax SystemParachains for free execution
Browse files Browse the repository at this point in the history
  • Loading branch information
bkontur committed Dec 1, 2023
1 parent 474fbdc commit 87e019c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,11 @@ 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.
// Parent and its pluralities (i.e. governance bodies), sibling system
// parachains and relay treasury get free execution.
AllowExplicitUnpaidExecutionFrom<(
ParentOrParentsPlurality,
SystemParachains,
Equals<RelayTreasuryLocation>,
)>,
// Subscriptions for version tracking are OK.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,11 @@ pub type Barrier = TrailingSetTopicAsId<
// If the message is one that immediately attemps to pay for execution, then
// allow it.
AllowTopLevelPaidExecutionFrom<Everything>,
// Parent, its pluralities (i.e. governance bodies), Fellows plurality
// and relay treasury get free execution.
// Parent, its pluralities (i.e. governance bodies), sibling system parachains,
// Fellows plurality and relay treasury get free execution.
AllowExplicitUnpaidExecutionFrom<(
ParentOrParentsPlurality,
SystemParachains,
FellowsPlurality,
Equals<RelayTreasuryLocation>,
)>,
Expand Down

0 comments on commit 87e019c

Please sign in to comment.