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 authored and ETatuzova committed Feb 1, 2024
1 parent 817a69f commit d0217a2
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 d0217a2

Please sign in to comment.