Skip to content

Commit

Permalink
chore(deps): bump subxt signer deps (#1840)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 authored Oct 24, 2024
1 parent 882e9df commit f358a38
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 17 deletions.
47 changes: 34 additions & 13 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,14 @@ test-runtime = { path = "testing/test-runtime" }
substrate-runner = { path = "testing/substrate-runner" }

# subxt-signer deps that I expect aren't useful anywhere else:
bip39 = { version = "2.0.0", default-features = false }
bip39 = { version = "2.1.0", default-features = false }
bip32 = { version = "0.5.2", default-features = false }
hmac = { version = "0.12.1", default-features = false }
pbkdf2 = { version = "0.12.2", default-features = false }
schnorrkel = { version = "0.11.4", default-features = false }
secp256k1 = { version = "0.29.1", default-features = false }
secp256k1 = { version = "0.30.0", default-features = false }
keccak-hash = { version = "0.11.0", default-features = false }
secrecy = "0.10.2"
secrecy = "0.10.3"
sha2 = { version = "0.10.8", default-features = false }
zeroize = { version = "1", default-features = false }
base64 = { version = "0.22.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion signer/src/ecdsa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ pub(crate) mod internal {
let (recid, sig): (_, [u8; 64]) = recsig.serialize_compact();
let mut signature_bytes: [u8; 65] = [0; 65];
signature_bytes[..64].copy_from_slice(&sig);
signature_bytes[64] = (recid.to_i32() & 0xFF) as u8;
signature_bytes[64] = (i32::from(recid) & 0xFF) as u8;
signature_bytes
}

Expand Down

0 comments on commit f358a38

Please sign in to comment.