Prep for 0.36.0 release (#1587)

* Prep for 0.36.0 release

* Stabilise unstabvle backend notes

* Make clearer that RPC methods dont retry
This commit is contained in:
James Wilson
2024-05-16 16:37:20 +01:00
committed by GitHub
parent 3c9984c7e4
commit 8c6452e22a
4 changed files with 131 additions and 25 deletions
+2 -2
View File
@@ -22,10 +22,10 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
.storage()
.at_latest()
.await?
.fetch_raw(subxt_core::storage::get_address_bytes(&storage_query, &api.metadata()).unwrap())
.fetch(&storage_query)
.await?;
let v = hex::encode(result.unwrap());
let v = result.unwrap().data.free;
println!("Alice: {v}");
Ok(())
}