Skip to content

Commit

Permalink
chore: Call filters
Browse files Browse the repository at this point in the history
  • Loading branch information
arrudagates committed Oct 5, 2022
1 parent 39cef50 commit b72b562
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions runtime/tinkernet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("tinkernet_node"),
impl_name: create_runtime_str!("tinkernet_node"),
authoring_version: 1,
spec_version: 6,
spec_version: 7,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -273,11 +273,11 @@ impl Contains<Call> for BaseFilter {
fn contains(c: &Call) -> bool {
!matches!(
c,
// Call::XTokens(_)
// | Call::PolkadotXcm(_)
// |
Call::OrmlXcm(_) // | Call::Currencies(_)
// | Call::Tokens(_)
Call::XTokens(_)
| Call::PolkadotXcm(_)
| Call::OrmlXcm(_)
| Call::Currencies(_)
| Call::Tokens(_)
)
}
}
Expand Down

0 comments on commit b72b562

Please sign in to comment.