Skip to content

Commit ccbe588

Browse files
committed
Fix batcher clippy issues
1 parent c26ad54 commit ccbe588

File tree

1 file changed

+2
-2
lines changed
  • batcher/aligned-batcher/src/zk_utils

1 file changed

+2
-2
lines changed

batcher/aligned-batcher/src/zk_utils/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ fn verify_internal(verification_data: &VerificationData) -> bool {
6767
return false;
6868
};
6969

70-
verify_mina_state(&verification_data.proof, &pub_input)
70+
verify_mina_state(&verification_data.proof, pub_input)
7171
}
7272
ProvingSystemId::MinaAccount => {
7373
let Some(pub_input) = verification_data.pub_input.as_ref() else {
7474
warn!("Mina Account public input is missing");
7575
return false;
7676
};
7777

78-
verify_account_inclusion(&verification_data.proof, &pub_input)
78+
verify_account_inclusion(&verification_data.proof, pub_input)
7979
}
8080
}
8181
}

0 commit comments

Comments
 (0)