1. 06 Jun, 2023 5 commits
  2. 05 Jun, 2023 4 commits
  3. 02 Jun, 2023 1 commit
  4. 01 Jun, 2023 3 commits
  5. 31 May, 2023 7 commits
  6. 30 May, 2023 4 commits
  7. 29 May, 2023 2 commits
  8. 25 May, 2023 10 commits
  9. 24 May, 2023 3 commits
  10. 23 May, 2023 1 commit
    • Martin Holst Swende's avatar
      rpc: change BlockNumber constant values to match ethclient (#27219) · 92317708
      Martin Holst Swende authored
      ethclient accepts certain negative block number values as specifiers for the "pending",
      "safe" and "finalized" block. In case of "pending", the value accepted by ethclient (-1)
      did not match rpc.PendingBlockNumber (-2).
      
      This wasn't really a problem, but other values accepted by ethclient did match the
      definitions in package rpc, and it's weird to have this one special case where they don't.
      
      To fix it, we decided to change the values of the constants rather than changing ethclient.
      The constant values are not otherwise significant. This is a breaking API change, but we
      believe not a dangerous one.
      
      ---------
      Co-authored-by: 's avatarFelix Lange <fjl@twurst.com>
      92317708