From 22a307c139ae600405f069d14ef5f5481455c959 Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Tue, 28 Jul 2020 14:20:50 +0300 Subject: [PATCH] fixed method name (#239) --- bridges/relays/ethereum/src/substrate_client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/relays/ethereum/src/substrate_client.rs b/bridges/relays/ethereum/src/substrate_client.rs index 3865566d9183c..c6e19cf110b8b 100644 --- a/bridges/relays/ethereum/src/substrate_client.rs +++ b/bridges/relays/ethereum/src/substrate_client.rs @@ -38,7 +38,7 @@ const ETH_API_IMPORT_REQUIRES_RECEIPTS: &str = "RialtoHeaderApi_is_import_requir const ETH_API_IS_KNOWN_BLOCK: &str = "RialtoHeaderApi_is_known_block"; const ETH_API_BEST_BLOCK: &str = "RialtoHeaderApi_best_block"; const ETH_API_BEST_FINALIZED_BLOCK: &str = "RialtoHeaderApi_finalized_block"; -const EXCH_API_FILTER_TRANSACTION_PROOF: &str = "CurrencyExchangeApi_filter_transaction_proof"; +const EXCH_API_FILTER_TRANSACTION_PROOF: &str = "RialtoCurrencyExchangeApi_filter_transaction_proof"; const SUB_API_GRANDPA_AUTHORITIES: &str = "GrandpaApi_grandpa_authorities"; type Result = std::result::Result;