Skip to content

Commit

Permalink
gcc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fcarreiro committed Jan 10, 2025
1 parent 6632e7d commit 6c1dab3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
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 @@ -829,7 +829,7 @@ bool avm2_verify(const std::filesystem::path& proof_path,
{
const auto proof = many_from_buffer<fr>(read_file(proof_path));
std::vector<uint8_t> vk_bytes = read_file(vk_path);
auto public_inputs = avm2::AvmAPI::PublicInputs::from(read_file(public_inputs_path));
auto public_inputs = avm2::PublicInputs::from(read_file(public_inputs_path));

init_bn254_crs(1);
avm2::AvmAPI avm;
Expand Down
1 change: 0 additions & 1 deletion barretenberg/cpp/src/barretenberg/vm2/avm_api.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class AvmAPI {
using AvmProof = AvmProvingHelper::Proof;
using AvmVerificationKey = std::vector<uint8_t>;
using ProvingInputs = AvmProvingInputs;
using PublicInputs = PublicInputs;

AvmAPI() = default;

Expand Down

0 comments on commit 6c1dab3

Please sign in to comment.