diff --git a/barretenberg/cpp/src/barretenberg/proof_system/circuit_builder/goblin_translator.fuzzer.hpp b/barretenberg/cpp/src/barretenberg/proof_system/circuit_builder/goblin_translator.fuzzer.hpp index 57d54288c16..ed2566f105f 100644 --- a/barretenberg/cpp/src/barretenberg/proof_system/circuit_builder/goblin_translator.fuzzer.hpp +++ b/barretenberg/cpp/src/barretenberg/proof_system/circuit_builder/goblin_translator.fuzzer.hpp @@ -35,7 +35,7 @@ std::vector parse_operations(const unsigned char* da } /** - * @brief Try to parse out the batching and evaluating challenges and then the ECCOpQUeue from the data + * @brief Try to parse out the batching and evaluating challenges and then the ECCOpQueue from the data * * @param data pointer to the buffer * @param size size of the buffer @@ -79,6 +79,6 @@ std::optional>> parse_and_constru ecc_op_queue->raw_ops = raw_ops; ecc_op_queue->mul_accumulate(padding_element, padding_scalar); - // Create circuit builder and feed the queue inside + // Return the batching challenge, evaluation challenge and the constructed queue return std::make_tuple(batching_challenge, x, ecc_op_queue); } diff --git a/barretenberg/cpp/src/barretenberg/proof_system/circuit_builder/goblin_translator_circuit_builder.fuzzer.cpp b/barretenberg/cpp/src/barretenberg/proof_system/circuit_builder/goblin_translator_circuit_builder.fuzzer.cpp index 216eea10ca1..981dc5777be 100644 --- a/barretenberg/cpp/src/barretenberg/proof_system/circuit_builder/goblin_translator_circuit_builder.fuzzer.cpp +++ b/barretenberg/cpp/src/barretenberg/proof_system/circuit_builder/goblin_translator_circuit_builder.fuzzer.cpp @@ -6,7 +6,8 @@ extern "C" int LLVMFuzzerTestOneInput(const unsigned char* data, size_t size) { // Parse the queue and challenges - // TODO(Rumata888): composer generates the initial challenge through FS, so we have to do that, too + // TODO(https://github.com/AztecProtocol/barretenberg/issues/869): composer generates the initial challenge through + // FS, so we have to do that, too auto parsing_result = parse_and_construct_opqueue(data, size); if (!parsing_result.has_value()) { return 0;