Fix new 1.62 clippy complaint

This commit is contained in:
Michael Vines 2022-06-30 12:09:07 -07:00
parent e17ed6b2b9
commit f14922c204
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ impl TpuConnection for QuicTpuConnection {
where
T: AsRef<[u8]> + Send + Sync,
{
let _res = RUNTIME.block_on(self.inner.send_wire_transaction_batch(buffers))?;
RUNTIME.block_on(self.inner.send_wire_transaction_batch(buffers))?;
Ok(())
}