-
Notifications
You must be signed in to change notification settings - Fork 20.1k
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
core/txpool: fix isGapped implementation #27404
Conversation
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
Thanks! |
Thx for the approval @holiman |
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.
Thanks for the fix.
// Short circuit if transaction falls within the scope of the pending list
// or matches the next pending nonce which can be promoted as an executable
// transaction afterwards. Note, the tx staleness is already checked in
// 'validateTx' function previously.
I would prefer to update the comment above.
c2686d5
to
910431b
Compare
Thx @rjl493456442 , I have updated the comment |
This fix a minor implementation issue with the newly introduced isGapped function and it is described in ticket: ethereum#27401
This reverts commit 210e688.
This reverts commit 210e688.
This fix a minor implementation issue with the newly introduced isGapped function
and it is described in this ticket: #27401