From 647775386d47336fd7ec0d549701c347e146fbdf Mon Sep 17 00:00:00 2001 From: Serhii Temchenko Date: Tue, 18 Jun 2024 05:47:53 -0700 Subject: [PATCH] fix(cs): Code style fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: José Duarte --- cli/polka-storage-provider/src/substrate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/polka-storage-provider/src/substrate.rs b/cli/polka-storage-provider/src/substrate.rs index 5df0c639f..97c73fcdc 100644 --- a/cli/polka-storage-provider/src/substrate.rs +++ b/cli/polka-storage-provider/src/substrate.rs @@ -14,7 +14,7 @@ pub type Client = OnlineClient; /// Initialize a Polkadot client. pub async fn init_client(url: impl AsRef) -> Result { - let inner = OnlineClient::::from_url(url).await?; + let inner = Client::from_url(url).await?; info!("Connection with parachain established."); Ok(inner) }