From df550c8dfc6cd958fa4f6f430861e208044b8626 Mon Sep 17 00:00:00 2001 From: zjb0807 Date: Mon, 27 Jun 2022 08:45:08 +0800 Subject: [PATCH] Enable honzon-bridge (#2227) * enable honzon-bridge * fix address --- runtime/karura/src/lib.rs | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/runtime/karura/src/lib.rs b/runtime/karura/src/lib.rs index 0553f900f7..d181e97024 100644 --- a/runtime/karura/src/lib.rs +++ b/runtime/karura/src/lib.rs @@ -213,15 +213,6 @@ impl Contains for BaseCallFilter { return false; } - let is_honzon_bridge = matches!( - call, - Call::HonzonBridge(_) // HonzonBridge isn't enabled until wAUSD is created. Issue #1967 - ); - if is_honzon_bridge { - // no honzon_bridge - return false; - } - if let Call::PolkadotXcm(xcm_method) = call { match xcm_method { pallet_xcm::Call::send { .. } @@ -1565,7 +1556,7 @@ impl module_idle_scheduler::Config for Runtime { } parameter_types! { - pub WormholeAUSDCurrencyId: CurrencyId = CurrencyId::Erc20(EvmAddress::from(hex_literal::hex!["0000000000000000000100000000000000000001"])); + pub WormholeAUSDCurrencyId: CurrencyId = CurrencyId::Erc20(EvmAddress::from(hex_literal::hex!["e20683ad1ed8bbeed7e1ae74be10f19d8045b530"])); pub const StableCoinCurrencyId: CurrencyId = KUSD; }