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 063b712 commit cb3f22bCopy full SHA for cb3f22b
barretenberg/cpp/src/barretenberg/bbapi/bbapi_client_ivc.cpp
@@ -81,7 +81,8 @@ ClientIvcProve::Response ClientIvcProve::execute(BBApiRequest& request) &&
81
// We verify this proof. Another bb call to verify has some overhead of loading VK/proof/SRS,
82
// and it is mysterious if this transaction fails later in the lifecycle.
83
info("ClientIvcProve - verifying the generated proof as a sanity check");
84
- if (!request.ivc_in_progress->verify(proof, request.ivc_in_progress->get_vk())) {
+ ClientIVC::VerificationKey vk = request.ivc_in_progress->get_vk();
85
+ if (!ClientIVC::verify(proof, vk)) {
86
throw_or_abort("Failed to verify the generated proof!");
87
}
88
0 commit comments