1. 25 Nov, 2021 3 commits
  2. 24 Nov, 2021 6 commits
  3. 23 Nov, 2021 6 commits
  4. 22 Nov, 2021 6 commits
  5. 19 Nov, 2021 1 commit
  6. 18 Nov, 2021 2 commits
  7. 17 Nov, 2021 2 commits
  8. 16 Nov, 2021 4 commits
  9. 12 Nov, 2021 1 commit
  10. 11 Nov, 2021 4 commits
  11. 10 Nov, 2021 2 commits
  12. 09 Nov, 2021 2 commits
  13. 08 Nov, 2021 1 commit
    • Felix Lange's avatar
      core: check effective tip in txpool pricelimit validation (#23855) · 94898533
      Felix Lange authored
      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 #23837
      94898533