Clippy fixes (#2033)

* clippy fixed

* wasm clippy

* clippy fixes

* post clippy fmt

* last clippy fix
This commit is contained in:
puzzle-rusher
2025-07-05 00:21:31 +04:00
committed by GitHub
parent 1f57e8fd1a
commit e892802baf
14 changed files with 37 additions and 40 deletions
+1 -1
View File
@@ -23,6 +23,6 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
.call(runtime_api_call)
.await;
println!("AccountNonceApi_account_nonce for Alice: {:?}", nonce);
println!("AccountNonceApi_account_nonce for Alice: {nonce:?}");
Ok(())
}