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}");