Skip to content

Commit

Permalink
Don't default --scheme to client_ivc
Browse files Browse the repository at this point in the history
  • Loading branch information
codygunton committed Nov 29, 2024
1 parent 9595f28 commit 057414e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions barretenberg/acir_tests/flows/prove_then_verify_tube.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ mkdir -p ./proofs
VFLAG=${VERBOSE:+-v}

$BIN prove --scheme client_ivc --input_type compiletime-stack $VFLAG -c $CRS_PATH -b ./target/program.json
$BIN prove_tube --scheme "" -k vk -p proof -c $CRS_PATH $VFLAG # WORKTODO: no default scheme for now
$BIN verify_tube --scheme "" -k vk -p proof -c $CRS_PATH $VFLAG
$BIN prove_tube --scheme -k vk -p proof -c $CRS_PATH $VFLAG # WORKTODO: no default scheme for now
$BIN verify_tube --scheme -k vk -p proof -c $CRS_PATH $VFLAG

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 @@ -1007,7 +1007,7 @@ int main(int argc, char* argv[])

const std::string command = args[0];
vinfo("bb command is: ", command);
const std::string proof_system = get_option(args, "--scheme", "client_ivc");
const std::string proof_system = get_option(args, "--scheme", "");
const std::string bytecode_path = get_option(args, "-b", "./target/program.json");
const std::string witness_path = get_option(args, "-w", "./target/witness.gz");
const std::string proof_path = get_option(args, "-p", "./proofs/proof");
Expand Down

0 comments on commit 057414e

Please sign in to comment.