diff --git a/runtime/karura/src/lib.rs b/runtime/karura/src/lib.rs index eccd6b970c..9236b7d989 100644 --- a/runtime/karura/src/lib.rs +++ b/runtime/karura/src/lib.rs @@ -212,19 +212,6 @@ impl Contains for BaseCallFilter { return false; } - let is_bnc_transfer = matches!( - call, - Call::Currencies(module_currencies::Call::transfer( - _, - CurrencyId::Token(TokenSymbol::BNC), - _ - )) - ); - if is_bnc_transfer { - // BNC transfer disabled by request of Bifrost team - return false; - } - true } }