fix command messages, force display order
This commit is contained in:
parent
e8833f5b0f
commit
362385a814
5 changed files with 10 additions and 5 deletions
|
@ -7,7 +7,8 @@ use std::path::Path;
|
|||
|
||||
pub fn subcommand() -> App<'static, 'static> {
|
||||
SubCommand::with_name("beacon")
|
||||
.about("Apply a random beacon")
|
||||
.about("Applies a random beacon")
|
||||
.display_order(3)
|
||||
.arg(
|
||||
Arg::with_name("input")
|
||||
.short("i")
|
||||
|
|
|
@ -7,7 +7,8 @@ use std::path::Path;
|
|||
|
||||
pub fn subcommand() -> App<'static, 'static> {
|
||||
SubCommand::with_name("contribute")
|
||||
.about("Contribute to a MPC ceremony")
|
||||
.about("Contributes to a ceremony")
|
||||
.display_order(2)
|
||||
.arg(
|
||||
Arg::with_name("input")
|
||||
.short("i")
|
||||
|
|
|
@ -10,7 +10,8 @@ use zokrates_field::Bn128Field;
|
|||
|
||||
pub fn subcommand() -> App<'static, 'static> {
|
||||
SubCommand::with_name("export")
|
||||
.about("Export keys from MPC parameters")
|
||||
.about("Exports keys from MPC parameters")
|
||||
.display_order(5)
|
||||
.arg(
|
||||
Arg::with_name("input")
|
||||
.short("i")
|
||||
|
|
|
@ -10,7 +10,8 @@ use zokrates_field::Bn128Field;
|
|||
|
||||
pub fn subcommand() -> App<'static, 'static> {
|
||||
SubCommand::with_name("init")
|
||||
.about("Initialize MPC phase 2 ceremony")
|
||||
.about("Initializes a MPC ceremony")
|
||||
.display_order(1)
|
||||
.arg(
|
||||
Arg::with_name("input")
|
||||
.short("i")
|
||||
|
|
|
@ -11,7 +11,8 @@ use zokrates_field::Bn128Field;
|
|||
|
||||
pub fn subcommand() -> App<'static, 'static> {
|
||||
SubCommand::with_name("verify")
|
||||
.about("Verify the correctness of the MPC parameters, given a circuit instance")
|
||||
.about("Verifies correctness of MPC parameters, given a circuit instance")
|
||||
.display_order(4)
|
||||
.arg(
|
||||
Arg::with_name("input")
|
||||
.short("i")
|
||||
|
|
Loading…
Reference in a new issue