From 1f184f55d474b93464fdba0ee29bf54817e9d389 Mon Sep 17 00:00:00 2001 From: Deniod Date: Sat, 13 Jan 2024 22:43:49 +0100 Subject: [PATCH] less debug --- lib/src/lightclient.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/lightclient.rs b/lib/src/lightclient.rs index c3c6de0..e698c95 100644 --- a/lib/src/lightclient.rs +++ b/lib/src/lightclient.rs @@ -1233,7 +1233,7 @@ pub fn start_mempool_monitor(lc: Arc) -> Result<(), String> { } // Sleep exponentially backing off std::thread::sleep(std::time::Duration::from_secs((2 as u64).pow(retry_count))); - println!("Sync error {}\nRetry count {}", e, retry_count); + // println!("Sync error {}\nRetry count {}", e, retry_count); } } }