From 643312162a28f643bb4da36cb61e940fe601e208 Mon Sep 17 00:00:00 2001 From: Xiliang Chen Date: Sat, 16 Oct 2021 17:55:33 +1300 Subject: [PATCH] enable BNC transfer (#1473) --- runtime/karura/src/lib.rs | 13 ------------- 1 file changed, 13 deletions(-) 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 } }