Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(lib/babe): add
--babe-lead
flag, update epoch handling logic #1895fix(lib/babe): add
--babe-lead
flag, update epoch handling logic #1895Changes from 42 commits
f9d3d0c
f11edb8
af49037
da7f10e
56136ea
3449217
04fc7b0
701dc09
d839ed9
a58ef35
e411560
cd71260
eb87877
2a7eb15
3c23837
e267b53
2cc41c2
7aa48d0
fde6e68
ea75c91
d13d5fd
70bd312
9345b0e
2294703
2f59f64
059e122
7539451
21d2fb3
1bbc646
ec5fba9
674af10
67809ae
6c3f134
7a7d68c
edfee2c
bae7217
4fccb85
5ce9c8e
05e8e88
dc8c892
9719415
fceafe3
b0ee396
9f2e5e7
c2dce86
bc41726
7cd77c1
911a7fc
398eab2
57717f4
486001d
5b53ca0
b62dd86
8d9dd14
bec16d8
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not just
break
whencase <-epochDoneCtx.Done()
is achieved?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would break the
select
, not thefor
loop.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh, right haha