Skip to content

Commit 555be57

Browse files
committed
chore: address clippy warnings
1 parent 37ad00c commit 555be57

File tree

1 file changed

+1
-1
lines changed
  • aggregation_mode/proof_aggregator/aggregation_programs/sp1/src

1 file changed

+1
-1
lines changed

aggregation_mode/proof_aggregator/aggregation_programs/sp1/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pub struct SP1VkAndPubInputs {
1313
impl SP1VkAndPubInputs {
1414
pub fn commitment(&self) -> [u8; 32] {
1515
let mut hasher = Keccak256::new();
16-
hasher.update(&SP1_PROVING_SYSTEM_ID.to_be_bytes());
16+
hasher.update(SP1_PROVING_SYSTEM_ID.to_be_bytes());
1717
for &word in &self.vk {
1818
hasher.update(word.to_be_bytes());
1919
}

0 commit comments

Comments
 (0)