diff --git a/runtime/g1/src/lib.rs b/runtime/g1/src/lib.rs
index 18e569aba45a39491a1539ce6a6dd5194fae2aa7..8c9a46e1ccae9a80504b7ef3dc8232c15ddc8a01 100644
--- a/runtime/g1/src/lib.rs
+++ b/runtime/g1/src/lib.rs
@@ -143,7 +143,7 @@ pub type Executive = frame_executive::Executive<
 pub struct BaseCallFilter;
 impl frame_support::traits::Contains<Call> for BaseCallFilter {
     fn contains(call: &Call) -> bool {
-        matches!(call, Call::Membership(_) | Call::Session(_))
+        !matches!(call, Call::Membership(_) | Call::Session(_))
     }
 }
 
diff --git a/runtime/gdev/src/lib.rs b/runtime/gdev/src/lib.rs
index 18a47fe2d25b263603d6e3c6a2506b91ef3cd342..b394fc9d81d06d532ec2b17e6fca32604fe638e5 100644
--- a/runtime/gdev/src/lib.rs
+++ b/runtime/gdev/src/lib.rs
@@ -135,7 +135,7 @@ pub type Executive = frame_executive::Executive<
 pub struct BaseCallFilter;
 impl frame_support::traits::Contains<Call> for BaseCallFilter {
     fn contains(call: &Call) -> bool {
-        matches!(call, Call::Membership(_))
+        !matches!(call, Call::Membership(_))
     }
 }
 
diff --git a/runtime/gtest/src/lib.rs b/runtime/gtest/src/lib.rs
index 4a9900a698db35745f5b0847519988163a088f58..eba0587aa1dfbb00d06a6a2b8080db8695f8f35e 100644
--- a/runtime/gtest/src/lib.rs
+++ b/runtime/gtest/src/lib.rs
@@ -143,7 +143,7 @@ pub type Executive = frame_executive::Executive<
 pub struct BaseCallFilter;
 impl frame_support::traits::Contains<Call> for BaseCallFilter {
     fn contains(call: &Call) -> bool {
-        matches!(call, Call::Membership(_) | Call::Session(_))
+        !matches!(call, Call::Membership(_) | Call::Session(_))
     }
 }