From b042de2e9ea9a384f426d69c0257f8cf80af5ed2 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 8 Aug 2021 01:12:04 +0100 Subject: [PATCH] client: wrap a line Signed-off-by: Ian Jackson --- src/bin/client.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bin/client.rs b/src/bin/client.rs index 4528733..646006c 100644 --- a/src/bin/client.rs +++ b/src/bin/client.rs @@ -247,7 +247,10 @@ async fn run_client( { while let Some(TxQueued { data, expires }) = tx_queue.pop_front() { match upbound.add(ic.max_batch_up, data.into()/*todo:504*/) { - Err(data) => { tx_queue.push_front(TxQueued { data: data.into(), expires }); break; } + Err(data) => { + tx_queue.push_front(TxQueued { data: data.into(), expires }); + break; + } Ok(()) => { }, } } -- 2.30.2