Skip to content

Commit

Permalink
fix: bb build (AztecProtocol#4317)
Browse files Browse the repository at this point in the history
fix dirty merge after
AztecProtocol#3718
  • Loading branch information
Maddiaa0 committed Jan 31, 2024
1 parent afcfa71 commit 82f5f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion barretenberg/cpp/src/barretenberg/goblin/mock_circuits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ class GoblinMockCircuits {
verifier1.verify_proof(function_accum.proof);

// Execute recursive aggregation of previous kernel proof if one exists
if (!prev_kernel_accum.proof.proof_data.empty()) {
if (!prev_kernel_accum.proof.empty()) {
RecursiveVerifier verifier2{ &builder, prev_kernel_accum.verification_key };
verifier2.verify_proof(prev_kernel_accum.proof);
}
Expand Down

0 comments on commit 82f5f03

Please sign in to comment.