We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c4dbcab + 11ecc22 commit 879c461Copy full SHA for 879c461
barretenberg/cpp/src/barretenberg/aztec_ivc/aztec_ivc.cpp
@@ -15,7 +15,7 @@ void AztecIVC::instantiate_stdlib_verification_queue(ClientCircuit& circuit)
15
auto stdlib_proof = bb::convert_proof_to_witness(&circuit, proof);
16
auto stdlib_vkey = std::make_shared<RecursiveVerificationKey>(&circuit, vkey);
17
18
- stdlib_verification_queue.emplace_back(stdlib_proof, stdlib_vkey, type);
+ stdlib_verification_queue.push_back({ stdlib_proof, stdlib_vkey, type });
19
}
20
verification_queue.clear(); // the native data is not needed beyond this point
21
0 commit comments