Update the reference link for Guaranteed Addresses

Also lints Cargo.toml.
This commit is contained in:
Luke Parker 2022-06-30 03:16:51 -04:00
parent f125f441ba
commit 0a690f5632
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6
2 changed files with 7 additions and 3 deletions

View file

@ -2,9 +2,13 @@
members = [ members = [
"crypto/transcript", "crypto/transcript",
"crypto/multiexp",
"crypto/frost",
"crypto/dalek-ff-group", "crypto/dalek-ff-group",
"crypto/multiexp",
"crypto/frost",
"coins/monero", "coins/monero",
"processor", "processor",
] ]

View file

@ -23,7 +23,7 @@ fn key_image_sort(x: &EdwardsPoint, y: &EdwardsPoint) -> std::cmp::Ordering {
x.compress().to_bytes().cmp(&y.compress().to_bytes()).reverse() x.compress().to_bytes().cmp(&y.compress().to_bytes()).reverse()
} }
// https://github.com/monero-project/research-lab/issues/103 // https://gist.github.com/kayabaNerve/8066c13f1fe1573286ba7a2fd79f6100
pub(crate) fn uniqueness(inputs: &[Input]) -> [u8; 32] { pub(crate) fn uniqueness(inputs: &[Input]) -> [u8; 32] {
let mut u = b"uniqueness".to_vec(); let mut u = b"uniqueness".to_vec();
for input in inputs { for input in inputs {