Fix 1.89 clippy warnings (#2055)

* Fix 1.89 clippy warnings

* WASM lightclient clippy fixes too
This commit is contained in:
James Wilson
2025-08-11 15:33:55 +01:00
committed by GitHub
parent 642e6b5be5
commit 42f1a62a05
8 changed files with 13 additions and 13 deletions
+3 -3
View File
@@ -72,17 +72,17 @@ impl PlatformRef for SubxtPlatform {
fn spawn_task(
&self,
_task_name: std::borrow::Cow<str>,
_task_name: std::borrow::Cow<'_, str>,
task: impl future::Future<Output = ()> + Send + 'static,
) {
wasm_bindgen_futures::spawn_local(task);
}
fn client_name(&self) -> std::borrow::Cow<str> {
fn client_name(&self) -> std::borrow::Cow<'_, str> {
"subxt-light-client".into()
}
fn client_version(&self) -> std::borrow::Cow<str> {
fn client_version(&self) -> std::borrow::Cow<'_, str> {
env!("CARGO_PKG_VERSION").into()
}