Skip to content

Commit cb3f22b

Browse files
committed
tidy
1 parent 063b712 commit cb3f22b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

barretenberg/cpp/src/barretenberg/bbapi/bbapi_client_ivc.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ ClientIvcProve::Response ClientIvcProve::execute(BBApiRequest& request) &&
8181
// We verify this proof. Another bb call to verify has some overhead of loading VK/proof/SRS,
8282
// and it is mysterious if this transaction fails later in the lifecycle.
8383
info("ClientIvcProve - verifying the generated proof as a sanity check");
84-
if (!request.ivc_in_progress->verify(proof, request.ivc_in_progress->get_vk())) {
84+
ClientIVC::VerificationKey vk = request.ivc_in_progress->get_vk();
85+
if (!ClientIVC::verify(proof, vk)) {
8586
throw_or_abort("Failed to verify the generated proof!");
8687
}
8788

0 commit comments

Comments
 (0)