Skip to content

Commit

Permalink
ConvertTokenAddress is obsolete (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
vgeddes authored Apr 12, 2023
1 parent 6173f36 commit ee4c538
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ impl pallet_bridge_relayers::Config for Runtime {

// Ethereum Bridge

use snowbridge_router_primitives::{ConvertTokenAddress, InboundMessageConverter};
use snowbridge_router_primitives::InboundMessageConverter;

parameter_types! {
pub const EthereumNetwork: xcm::v3::NetworkId = xcm::v3::NetworkId::Ethereum { chain_id: 1};
Expand All @@ -560,7 +560,7 @@ impl snowbridge_inbound_queue::Config for Runtime {
type Token = Balances;
type Reward = Reward;
type Verifier = snowbridge_ethereum_beacon_client::Pallet<Runtime>;
type MessageConversion = InboundMessageConverter<ConvertTokenAddress<EthereumNetwork>>;
type MessageConversion = InboundMessageConverter<EthereumNetwork>;
type XcmSender = XcmRouter;
type WeightInfo = ();
}
Expand Down

0 comments on commit ee4c538

Please sign in to comment.