mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 19:21:13 +00:00
Remove extra commas made redundent after rustfmt (#9404)
* Remove extra commas made redundent after rustfmt
This commit is contained in:
@@ -264,7 +264,7 @@ impl<B: BlockT> Future for GossipEngine<B> {
|
||||
match sink.start_send(notification.clone()) {
|
||||
Ok(()) => {},
|
||||
Err(e) if e.is_full() =>
|
||||
unreachable!("Previously ensured that all sinks are ready; qed.",),
|
||||
unreachable!("Previously ensured that all sinks are ready; qed."),
|
||||
// Receiver got dropped. Will be removed in next iteration (See (1)).
|
||||
Err(_) => {},
|
||||
}
|
||||
@@ -624,7 +624,7 @@ mod tests {
|
||||
.or_insert(1);
|
||||
},
|
||||
Poll::Ready(None) =>
|
||||
unreachable!("Sender side of channel is never dropped",),
|
||||
unreachable!("Sender side of channel is never dropped"),
|
||||
Poll::Pending => {},
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user