Skip to content

Commit

Permalink
Fix new 1.62 clippy complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Jun 30, 2022
1 parent e17ed6b commit f14922c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/quic_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(())
}

Expand Down

0 comments on commit f14922c

Please sign in to comment.