-
Notifications
You must be signed in to change notification settings - Fork 90
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
eth2wrap: fix synthetic block proposals #2693
Conversation
return nil, err | ||
} else if signed == nil { // go-eth2-client returns nil if proposal is not found. |
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.
This is not true anymore, ie, go-eth2-client no longer returns nil, nil
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #2693 +/- ##
==========================================
+ Coverage 53.18% 53.29% +0.10%
==========================================
Files 201 201
Lines 27576 27577 +1
==========================================
+ Hits 14666 14696 +30
+ Misses 11093 11065 -28
+ Partials 1817 1816 -1
☔ View full report in Codecov by Sentry. |
Co-authored-by: Dhruv Bodani <[email protected]>
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Continue looking for signed beacon blocks if a block for a given slot is not found when proposing synthetic blocks. This solves recurrent logs when synthetic block proposal feature is switched on: ``` {"code":404,"message":"NOT_FOUND: beacon block at slot 6916888","stacktraces":[]} ``` category: bug ticket: none
Continue looking for signed beacon blocks if a block for a given slot is not found when proposing synthetic blocks.
This solves recurrent logs when synthetic block proposal feature is switched on:
category: bug
ticket: #2695