Skip to content

Commit

Permalink
Release v0.9.3 (#681)
Browse files Browse the repository at this point in the history
  • Loading branch information
AurevoirXavier authored Dec 6, 2023
1 parent 2a07c71 commit 0a6c9e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2021"
homepage = "https://hack.ink/subalfred"
license = "GPL-3.0"
repository = "https://github.com/hack-ink/subalfred"
version = "0.9.2"
version = "0.9.3"

[workspace.dependencies]
# crates.io
Expand Down
2 changes: 1 addition & 1 deletion lib/core/src/node/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ pub async fn find_runtime_upgrade_block(
let best_finalized_hash = client.get_finalized_head().await?;
let mut left = 0;
let mut right =
u32::try_from_hex(&client.get_header::<String, _>(Some(best_finalized_hash)).await?.number)
u32::try_from_hex(client.get_header::<String, _>(Some(best_finalized_hash)).await?.number)
.map_err(|_| error::almost_impossible(E_BLOCK_NUMBER_IS_NON_HEX))?;
let mut mid = right / 2;

Expand Down

0 comments on commit 0a6c9e9

Please sign in to comment.