mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-07-02 18:46:52 -04:00
fixed bug in interpreting hash
This commit is contained in:
parent
fcc9e66106
commit
8c50a9ccea
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ where
|
|||
// Check if desired CAPNP_VERSION hash has changed
|
||||
let mut hasher = Sha256::new();
|
||||
hasher.update(get_desired_capnp_version_string().as_bytes());
|
||||
let capnp_hash = hex::encode(hasher.finalize()).as_bytes().to_vec();
|
||||
let capnp_hash = hasher.finalize().to_vec();
|
||||
|
||||
let in_bh = make_build_hash(input);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue