mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-08-02 11:46:07 -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
|
// Check if desired CAPNP_VERSION hash has changed
|
||||||
let mut hasher = Sha256::new();
|
let mut hasher = Sha256::new();
|
||||||
hasher.update(get_desired_capnp_version_string().as_bytes());
|
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);
|
let in_bh = make_build_hash(input);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue