From 93de9e5dda18577de25313fdb9e9bdd71de8747b Mon Sep 17 00:00:00 2001 From: Andrea Giacobino Date: Wed, 4 Sep 2024 15:53:24 +0200 Subject: [PATCH] Use Eth instead of Frontier in method name --- client/rpc/finality/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/rpc/finality/src/lib.rs b/client/rpc/finality/src/lib.rs index 843a050eed..32ad0ca012 100644 --- a/client/rpc/finality/src/lib.rs +++ b/client/rpc/finality/src/lib.rs @@ -38,7 +38,7 @@ pub trait MoonbeamFinalityApi { async fn is_tx_finalized(&self, tx_hash: H256) -> RpcResult; /// Gets the range of blocks that are fully indexed in frontier's backend. - #[method(name = "moon_getFrontierSyncBlockRange")] + #[method(name = "moon_getEthSyncBlockRange")] async fn get_frontier_sync_block_range(&self) -> RpcResult<(H256, H256)>; }