From a20a35a725bec6f31df7c9374cb4319d7d6d2aa8 Mon Sep 17 00:00:00 2001 From: Edwin Wang Date: Sat, 28 Aug 2021 11:32:58 +0800 Subject: [PATCH] disable Currencies::transfer --- runtime/bifrost/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtime/bifrost/src/lib.rs b/runtime/bifrost/src/lib.rs index 1727ec8f5..b4e7ff328 100644 --- a/runtime/bifrost/src/lib.rs +++ b/runtime/bifrost/src/lib.rs @@ -165,7 +165,8 @@ impl Filter for CallFilter { Call::Vesting(_) => false, Call::Tokens(_) => false, Call::PhragmenElection(_) => false, - Call::Currencies(orml_currencies::Call::transfer_native_currency(..)) => false, + Call::Currencies(_) => false, + // Call::Currencies(orml_currencies::Call::transfer_native_currency(..)) => false, _ => true, } }