Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
SilkovAlexander committed Mar 19, 2024
1 parent 5ffe481 commit e624ff6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/bin/bls_keypair_gen.rs
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
// 2022-2024 (c) Copyright Contributors to the GOSH DAO. All rights reserved.
//
use clap::Parser;
use gosh_bls_lib::bls::gen_bls_key_pair;
use gosh_bls_lib::bls::gen_bls_key_pair_based_on_key_material;
use gosh_bls_lib::bls::BLS_SECRET_KEY_LEN;
use clap::Parser;

#[derive(Parser)]
#[command(version, about, long_about = None)]
struct Args {
/// Hex string with 32 bytes of key material for bls
#[arg(short, long)]
key_material: Option<String>
key_material: Option<String>,
}


fn main() {
let args: Args = Args::parse();

Expand Down

0 comments on commit e624ff6

Please sign in to comment.