Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: restore missing basecallfilter items
  • Loading branch information
sander2 committed Jan 20, 2023
commit 80cf335c2863fcf9ab1e076584ad069283665af3
3 changes: 3 additions & 0 deletions parachain/runtime/interlay/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,10 @@ impl Contains<RuntimeCall> for BaseCallFilter {
if matches!(
call,
RuntimeCall::System(_)
| RuntimeCall::Authorship(_)
| RuntimeCall::Session(_)
| RuntimeCall::Timestamp(_)
| RuntimeCall::ParachainSystem(_)
| RuntimeCall::Sudo(_)
| RuntimeCall::Democracy(_)
| RuntimeCall::Escrow(_)
Expand Down
3 changes: 3 additions & 0 deletions parachain/runtime/kintsugi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,10 @@ impl Contains<RuntimeCall> for BaseCallFilter {
if matches!(
call,
RuntimeCall::System(_)
| RuntimeCall::Authorship(_)
| RuntimeCall::Session(_)
| RuntimeCall::Timestamp(_)
| RuntimeCall::ParachainSystem(_)
| RuntimeCall::Sudo(_)
| RuntimeCall::Democracy(_)
| RuntimeCall::Escrow(_)
Expand Down
3 changes: 3 additions & 0 deletions parachain/runtime/testnet-interlay/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,10 @@ impl Contains<RuntimeCall> for BaseCallFilter {
if matches!(
call,
RuntimeCall::System(_)
| RuntimeCall::Authorship(_)
| RuntimeCall::Session(_)
| RuntimeCall::Timestamp(_)
| RuntimeCall::ParachainSystem(_)
| RuntimeCall::Sudo(_)
| RuntimeCall::Democracy(_)
| RuntimeCall::Escrow(_)
Expand Down
3 changes: 3 additions & 0 deletions parachain/runtime/testnet-kintsugi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,10 @@ impl Contains<RuntimeCall> for BaseCallFilter {
if matches!(
call,
RuntimeCall::System(_)
| RuntimeCall::Authorship(_)
| RuntimeCall::Session(_)
| RuntimeCall::Timestamp(_)
| RuntimeCall::ParachainSystem(_)
| RuntimeCall::Sudo(_)
| RuntimeCall::Democracy(_)
| RuntimeCall::Escrow(_)
Expand Down