From 104089aaa9e65a1501e850ba73d632315668e25f Mon Sep 17 00:00:00 2001 From: Willem Wyndham Date: Fri, 30 Aug 2024 08:12:56 -0400 Subject: [PATCH] fix: remove unneeded print statement (#1554) --- cmd/soroban-cli/src/commands/events.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/cmd/soroban-cli/src/commands/events.rs b/cmd/soroban-cli/src/commands/events.rs index a755c33d0..5e2bda66f 100644 --- a/cmd/soroban-cli/src/commands/events.rs +++ b/cmd/soroban-cli/src/commands/events.rs @@ -176,8 +176,6 @@ impl Cmd { OutputFormat::Pretty => event.pretty_print()?, } } - println!("Latest Ledger: {}", response.latest_ledger); - Ok(()) }