Skip to content

Commit

Permalink
Reworked to single event with boolean paramter #45
Browse files Browse the repository at this point in the history
  • Loading branch information
vo-nil committed Dec 1, 2023
1 parent f126ead commit df7bc3f
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,13 +260,10 @@ contract modular_verifier_$TEST_NAME$ is IModularVerifier{
emit ConstraintSystemNotSatisfied();
state.b = false;
}
if(state.b) {
emit ProofVerified();
} else {
emit ProofVerificationFailed();
}
}
emit VerificationResult(state.b);
result = state.b;
}
}
Expand Down

0 comments on commit df7bc3f

Please sign in to comment.