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) }