We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c26ad54 commit ccbe588Copy full SHA for ccbe588
batcher/aligned-batcher/src/zk_utils/mod.rs
@@ -67,15 +67,15 @@ fn verify_internal(verification_data: &VerificationData) -> bool {
67
return false;
68
};
69
70
- verify_mina_state(&verification_data.proof, &pub_input)
+ verify_mina_state(&verification_data.proof, pub_input)
71
}
72
ProvingSystemId::MinaAccount => {
73
let Some(pub_input) = verification_data.pub_input.as_ref() else {
74
warn!("Mina Account public input is missing");
75
76
77
78
- verify_account_inclusion(&verification_data.proof, &pub_input)
+ verify_account_inclusion(&verification_data.proof, pub_input)
79
80
81
0 commit comments