-
Notifications
You must be signed in to change notification settings - Fork 5
Introduce TransactionPool and PayloadBuilder #182
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
Conversation
CodSpeed Performance ReportMerging #182 will not alter performanceComparing Summary
|
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! just a few typos and questions
// Seal the block and return if hashes match | ||
let block_hash = block.hash_slow(); | ||
if block_hash == expected_hash { | ||
return block | ||
.seal_unchecked(block_hash) | ||
.try_recover() | ||
.map_err(|err| NewPayloadError::Other(err.into())); | ||
} |
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.
is this to handle the deprecation of clique?
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.
Yes, it is. I've opened an issue to productionise the ScrollEngineValidator
#184
No description provided.