From 242522b04054085a72ad3be8e4916393e452612b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Est=C3=A9fano=20Bargas?= Date: Mon, 2 Sep 2024 18:48:40 -0300 Subject: [PATCH] Fix clippy --- core/src/main.rs | 1 - core/src/smart_contract_utility.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/core/src/main.rs b/core/src/main.rs index 4db8a995..8ce14fc1 100644 --- a/core/src/main.rs +++ b/core/src/main.rs @@ -147,7 +147,6 @@ async fn main() { pub_input, &chain, ð_rpc_url, - wallet, ) .await .unwrap_or_else(|err| { diff --git a/core/src/smart_contract_utility.rs b/core/src/smart_contract_utility.rs index 41187349..d996dfff 100644 --- a/core/src/smart_contract_utility.rs +++ b/core/src/smart_contract_utility.rs @@ -167,7 +167,6 @@ pub async fn is_account_verified( pub_input: Vec, chain: &Chain, eth_rpc_url: &str, - wallet: Wallet, ) -> Result { let bridge_eth_addr = Address::from_str(match chain { Chain::Devnet => BRIDGE_DEVNET_ETH_ADDR,