-
-
Notifications
You must be signed in to change notification settings - Fork 291
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
feat: make few improvements to the prover #5636
Conversation
Performance Report✔️ no performance regression detected Full benchmark results
|
for (const {method, params} of opts.dependentRequests ?? []) { | ||
const {payload, response} = await rawEth(network, method, params); | ||
if (response.error || !response.result) { | ||
for (const req of opts.dependentRequests ?? []) { |
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 is there opts.dependentRequests
and const dependentRequests = [];
, are those the same thing?
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.
opts.dependentRequests
contains only partial requests while dependentRequests
contains full payload
and response
.
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.
LGTM!
🎉 This PR is included in v1.9.0 🎉 |
Motivation
Make the
@lodestar/prover
useful for production.Description
Partially #4706
Steps to test or reproduce