1. 10 Nov, 2022 1 commit
  2. 09 Nov, 2022 4 commits
  3. 08 Nov, 2022 6 commits
  4. 07 Nov, 2022 6 commits
  5. 06 Nov, 2022 1 commit
  6. 04 Nov, 2022 3 commits
  7. 03 Nov, 2022 2 commits
  8. 02 Nov, 2022 6 commits
  9. 01 Nov, 2022 5 commits
  10. 31 Oct, 2022 3 commits
  11. 28 Oct, 2022 3 commits
    • rjl493456442's avatar
      cmd, eth: implement full-sync tester (#26035) · 2c1af8b1
      rjl493456442 authored
      This PR adds a parameter to startup, --synctarget. The synctarget flag is a developer-flag, that can be useful in some scenarios as a replacement for a CL node. It defines a fixed block sync target:
      
      geth --syncmode=full --synctarget=./block_15816882.hex_rlp 
      
      The --synctarget is only made available during syncmode=full
      2c1af8b1
    • Sina Mahmoodi's avatar
      eth/tracers: fix gasUsed for native and JS tracers (#26048) · 0f494221
      Sina Mahmoodi authored
      * eth/tracers: fix gasUsed in call tracer
      
      * fix js tracers gasUsed
      
      * fix legacy prestate tracer
      
      * fix restGas in test
      
      * drop intrinsicGas field from js tracers
      0f494221
    • lightclient's avatar
      cmd/evm: calc base fee if parent data is present (#26051) · fbdeff99
      lightclient authored
      Currently, in order to chain together sequential valid t8n transitions the caller must manually calculate the block base fee. This PR adds support for the necessary parent fee market data to calculate the base fee for the current transition.
      
      Concretely, env is extended to accept the following:
      
          parentBaseFee
          parentGasUsed
          parentGasLimit
      
      Example usage can be found in ./cmd/evm/testdata/25.
      Co-authored-by: 's avatarMartin Holst Swende <martin@swende.se>
      fbdeff99