Skip to content
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: check effective tip in txpool pricelimit validation #23855

Merged
merged 1 commit into from
Nov 8, 2021

Commits on Nov 4, 2021

  1. core: check effective tip in txpool pricelimit validation

    The price limit is supposed to exclude transactions with too low fee
    amount. Before EIP-1559, it was sufficient to check the limit against
    the gas price of the transaction. After 1559, it is more complicated
    because the concept of 'transaction gas price' does not really exist.
    
    When mining, the price limit is used to exclude transactions below a
    certain effective fee amount. This change makes it apply the same check
    earlier, in tx validation. Transactions below the specified fee amount
    cannot enter the pool.
    
    Fixes ethereum#23837
    fjl committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    7a58fdc View commit details
    Browse the repository at this point in the history