We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37ad00c commit 555be57Copy full SHA for 555be57
1 file changed
aggregation_mode/proof_aggregator/aggregation_programs/sp1/src/lib.rs
@@ -13,7 +13,7 @@ pub struct SP1VkAndPubInputs {
13
impl SP1VkAndPubInputs {
14
pub fn commitment(&self) -> [u8; 32] {
15
let mut hasher = Keccak256::new();
16
- hasher.update(&SP1_PROVING_SYSTEM_ID.to_be_bytes());
+ hasher.update(SP1_PROVING_SYSTEM_ID.to_be_bytes());
17
for &word in &self.vk {
18
hasher.update(word.to_be_bytes());
19
}
0 commit comments