Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

Commit

Permalink
Merge pull request #100 from matter-labs/development
Browse files Browse the repository at this point in the history
Some zargo fixes
  • Loading branch information
gluk64 authored Feb 14, 2020
2 parents 5d2d0cc + f380c54 commit 3f93282
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion zargo/src/command/proof_check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ use crate::manifest::Error as ManifestError;
use crate::manifest::Manifest;

#[derive(Debug, StructOpt)]
#[structopt(about = "Runs a circuit and saves its output")]
#[structopt(
about = "Runs the full circuit building, running, trusted setup, proving & verifying sequence"
)]
pub struct Command {
#[structopt(
short = "v",
Expand Down
6 changes: 3 additions & 3 deletions zargo/src/directory/source/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ impl Main {
//! The '{}' main module.
//!
fn main(witness: u8) -> bool {{
dbg!("Zello, World {{}}!", witness);
fn main(witness: u8) -> u8 {{
dbg!("Zello, World!");
true
witness
}}
"#,
self.circuit_name
Expand Down

0 comments on commit 3f93282

Please sign in to comment.