Skip to content

Commit

Permalink
cli: dont print client/server seed and nonce, redundant
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasholder committed Apr 1, 2020
1 parent 2bc382d commit 2547a40
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,6 @@ fn main() {
// TODO use value_t! to parse game.. ensure game is in valid list of strings...
let nonce: u64 = value_t!(sub_matches, "nonce", u64).unwrap_or_else(|e| e.exit());
// println!("{:?}", matches);
println!("Client seed: {}", client_seed);
println!("Server seed: {}", server_seed);
println!("Nonce: {}", nonce);
println!("");

let config = ProvablyFairConfig::new(client_seed, server_seed, nonce);
let res = match game {
"baccarat" => baccarat::simulate(config).to_string(),
Expand Down

0 comments on commit 2547a40

Please sign in to comment.