mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
fixed bug in interpreting hash
This commit is contained in:
parent
fcc9e66106
commit
8c50a9ccea
@ -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…
Reference in New Issue
Block a user