Replace some checksums where it makes sense

This commit is contained in:
Alex Auvolat
2021-02-23 18:14:37 +01:00
parent e8e4418ca7
commit 6e6f7e8555
3 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -141,7 +141,7 @@ impl Status {
writeln!(&mut nodes_txt, "{} {}", hex::encode(&id), status.addr).unwrap();
}
debug!("END --");
self.hash = sha256sum(nodes_txt.as_bytes());
self.hash = blake2sum(nodes_txt.as_bytes());
}
}