Merge pull request #1165 from Zokrates/change-default-backend
Change default backend in the CLI
This commit is contained in:
commit
7781819bb3
5 changed files with 6 additions and 5 deletions
1
changelogs/unreleased/1165-dark64
Normal file
1
changelogs/unreleased/1165-dark64
Normal file
|
@ -0,0 +1 @@
|
|||
Change the default backend to `ark` in the CLI
|
|
@ -34,5 +34,5 @@ zokrates mpc export -i final.params
|
|||
|
||||
# use the keys to generate proofs and verify
|
||||
zokrates compute-witness -i circuit -a 123456789 987654321 --verbose
|
||||
zokrates generate-proof -i circuit
|
||||
zokrates verify
|
||||
zokrates generate-proof -i circuit -b bellman
|
||||
zokrates verify -b bellman
|
|
@ -69,7 +69,7 @@ pub fn subcommand() -> App<'static, 'static> {
|
|||
.takes_value(true)
|
||||
.required(false)
|
||||
.possible_values(cli_constants::BACKENDS)
|
||||
.default_value(constants::BELLMAN),
|
||||
.default_value(constants::ARK),
|
||||
)
|
||||
.arg(
|
||||
Arg::with_name("proving-scheme")
|
||||
|
|
|
@ -59,7 +59,7 @@ pub fn subcommand() -> App<'static, 'static> {
|
|||
.takes_value(true)
|
||||
.required(false)
|
||||
.possible_values(cli_constants::BACKENDS)
|
||||
.default_value(constants::BELLMAN),
|
||||
.default_value(constants::ARK),
|
||||
)
|
||||
.arg(
|
||||
Arg::with_name("proving-scheme")
|
||||
|
|
|
@ -47,7 +47,7 @@ pub fn subcommand() -> App<'static, 'static> {
|
|||
.takes_value(true)
|
||||
.required(false)
|
||||
.possible_values(cli_constants::BACKENDS)
|
||||
.default_value(constants::BELLMAN),
|
||||
.default_value(constants::ARK),
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue