We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cab019 commit 1f7c612Copy full SHA for 1f7c612
beacon_node/network/src/subnet_service/mod.rs
@@ -636,7 +636,7 @@ impl<T: BeaconChainTypes> Stream for SubnetService<T> {
636
match self.scheduled_subscriptions.poll_next_unpin(cx) {
637
Poll::Ready(Some(Ok(exact_subnet))) => {
638
let ExactSubnet { subnet, slot } = exact_subnet;
639
- // Set the `end_slot` for the subscription to be `duty.slot + 1` so that we unsubscribe
+ // Set the `end_slot` for the subscription to be `duty.slot + 1` so that we unsubscribe
640
// only at the end of the duty slot.
641
if let Err(e) = self.subscribe_to_subnet_immediately(subnet, slot + 1) {
642
debug!(self.log, "Failed to subscribe to short lived subnet"; "subnet" => ?subnet, "err" => e);
0 commit comments