Skip to content

Commit

Permalink
fix(cs): Code style fix
Browse files Browse the repository at this point in the history
Co-authored-by: José Duarte <[email protected]>
  • Loading branch information
serg-temchenko and jmg-duarte authored Jun 18, 2024
1 parent 859b88f commit 6477753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/polka-storage-provider/src/substrate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub type Client = OnlineClient<Config>;

/// Initialize a Polkadot client.
pub async fn init_client(url: impl AsRef<str>) -> Result<Client, Error> {
let inner = OnlineClient::<Config>::from_url(url).await?;
let inner = Client::from_url(url).await?;
info!("Connection with parachain established.");
Ok(inner)
}
Expand Down

0 comments on commit 6477753

Please sign in to comment.