From 178ab38e35c5819e61f06266f9f72c939c3982d7 Mon Sep 17 00:00:00 2001 From: Astro Date: Thu, 19 Nov 2020 20:27:05 +0100 Subject: [PATCH] experiments: delint --- experiments/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/experiments/src/main.rs b/experiments/src/main.rs index f6513d0..f327a88 100644 --- a/experiments/src/main.rs +++ b/experiments/src/main.rs @@ -223,7 +223,7 @@ pub fn main_core0() { // const CHUNK_SIZE: usize = 65536; // match stream.send((0..=255).cycle().take(CHUNK_SIZE)).await { match stream.send_slice(&tx_data[..]).await { - Ok(len) => stats_tx.borrow_mut().1 += tx_data.len(), //CHUNK_SIZE, + Ok(_len) => stats_tx.borrow_mut().1 += tx_data.len(), //CHUNK_SIZE, Err(e) => { warn!("tx: {:?}", e); break