Merge branch 'develop' of github.com:Zokrates/ZoKrates into zokrates-nova
This commit is contained in:
commit
64b8693f91
2 changed files with 3 additions and 1 deletions
1
changelogs/unreleased/1275-dark64
Normal file
1
changelogs/unreleased/1275-dark64
Normal file
|
@ -0,0 +1 @@
|
|||
Show help when running `zokrates mpc`
|
|
@ -1,4 +1,4 @@
|
|||
use clap::{App, ArgMatches, SubCommand};
|
||||
use clap::{App, AppSettings, ArgMatches, SubCommand};
|
||||
|
||||
pub mod beacon;
|
||||
pub mod contribute;
|
||||
|
@ -9,6 +9,7 @@ pub mod verify;
|
|||
pub fn subcommand() -> App<'static, 'static> {
|
||||
SubCommand::with_name("mpc")
|
||||
.about("Multi-party computation (MPC) protocol")
|
||||
.setting(AppSettings::SubcommandRequiredElseHelp)
|
||||
.subcommands(vec![
|
||||
init::subcommand().display_order(1),
|
||||
contribute::subcommand().display_order(2),
|
||||
|
|
Loading…
Reference in a new issue