Skip to content

Commit 63d7eec

Browse files
committed
fix formatting
1 parent ee978d7 commit 63d7eec

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/network/network_handler.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,8 +516,10 @@ impl NetworkHandler {
516516
MessageKind::Batch { results_sender, .. } => match result {
517517
Ok(resp_buf) => {
518518
message_to_receive.pending_responses.push(resp_buf);
519-
self.pending_result_batches
520-
.push((results_sender, Ok(message_to_receive.pending_responses.into_vec())));
519+
self.pending_result_batches.push((
520+
results_sender,
521+
Ok(message_to_receive.pending_responses.into_vec()),
522+
));
521523
}
522524
Err(e) => {
523525
self.pending_result_batches.push((results_sender, Err(e)));

0 commit comments

Comments
 (0)