Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion barretenberg/cpp/src/barretenberg/bb/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ void avm_prove(const std::filesystem::path& bytecode_path,
// Prove execution and return vk
auto const [verification_key, proof] = avm_trace::Execution::prove(avm_bytecode, call_data);
// TODO(ilyas): <#4887>: Currently we only need these two parts of the vk, look into pcs_verification key reqs
std::vector<size_t> vk_vector = { verification_key.circuit_size, verification_key.num_public_inputs };
std::vector<uint64_t> vk_vector = { verification_key.circuit_size, verification_key.num_public_inputs };

std::filesystem::path output_vk_path = output_path.parent_path() / "vk";
write_file(output_vk_path, to_buffer(vk_vector));
Expand Down