From 00d0e9cb2c6f3944447ca427eb006a1a8df810f4 Mon Sep 17 00:00:00 2001 From: mfahampshire Date: Thu, 20 Jul 2023 18:24:48 +0200 Subject: [PATCH] removed commented out logging setup command --- demos/rust-cosmos-broadcaster/bin/client.rs | 2 +- demos/rust-cosmos-broadcaster/bin/service.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/demos/rust-cosmos-broadcaster/bin/client.rs b/demos/rust-cosmos-broadcaster/bin/client.rs index 08dc755afc..e69a7b07f1 100644 --- a/demos/rust-cosmos-broadcaster/bin/client.rs +++ b/demos/rust-cosmos-broadcaster/bin/client.rs @@ -40,7 +40,7 @@ struct SendTx { #[tokio::main] async fn main() -> anyhow::Result<()> { - // setup_logging(); + let cli = Cli::parse(); let mut client = create_client("/tmp/cosmos-broadcaster-mixnet-client-5".into()).await; let our_address = client.nym_address(); diff --git a/demos/rust-cosmos-broadcaster/bin/service.rs b/demos/rust-cosmos-broadcaster/bin/service.rs index 5fdf52ed35..2404530dbb 100644 --- a/demos/rust-cosmos-broadcaster/bin/service.rs +++ b/demos/rust-cosmos-broadcaster/bin/service.rs @@ -7,7 +7,6 @@ use rust_cosmos_broadcaster::{ #[tokio::main] async fn main() -> anyhow::Result<()> { - // setup_logging(); let mut client = create_client("/tmp/cosmos-broadcaster-mixnet-server-3".into()).await; let our_address = client.nym_address(); println!("\nservice's nym address: {our_address}");