Skip to content

Commit

Permalink
chore: look for a json file rather than gz by defatul
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed May 9, 2024
1 parent 2e1f273 commit e23d08f
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -761,7 +761,7 @@ int main(int argc, char* argv[])

std::string command = args[0];

std::string bytecode_path = get_option(args, "-b", "./target/acir.gz");
std::string bytecode_path = get_option(args, "-b", "./target/program.json");
std::string witness_path = get_option(args, "-w", "./target/witness.gz");
std::string proof_path = get_option(args, "-p", "./proofs/proof");
std::string vk_path = get_option(args, "-k", "./target/vk");
Expand Down

0 comments on commit e23d08f

Please sign in to comment.