Update according to the latest clippy

This commit is contained in:
Luke Parker
2022-09-04 21:23:38 -04:00
parent 73566e756d
commit 31b64b3082
7 changed files with 14 additions and 14 deletions

View File

@@ -43,8 +43,8 @@ impl ClsagInput {
// Doesn't include global output indexes as CLSAG doesn't care and won't be affected by it
// They're just a unreliable reference to this data which will be included in the message
// if in use
ring.extend(&pair[0].compress().to_bytes());
ring.extend(&pair[1].compress().to_bytes());
ring.extend(pair[0].compress().to_bytes());
ring.extend(pair[1].compress().to_bytes());
}
transcript.append_message(b"ring", &ring);