1. 11 Nov, 2022 1 commit
    • Felix Lange's avatar
      internal/debug: add --log.file option (#26149) · 5b4c149f
      Felix Lange authored
      This adds an option to direct log output to a file. This feature has been
      requested a lot. It's sometimes useful to have this available when running
      geth in an environment that doesn't easily allow redirecting the output.
      
      Notably, there is no support for log rotation with this change. The --log.file option
      opens the file once on startup and then keeps writing to the file handle. 
      This can become an issue when external log rotation tools are involved, so it's
      best not to use them with this option for now.
      5b4c149f
  2. 10 Nov, 2022 1 commit
  3. 09 Nov, 2022 4 commits
  4. 08 Nov, 2022 6 commits
  5. 07 Nov, 2022 6 commits
  6. 06 Nov, 2022 1 commit
  7. 04 Nov, 2022 3 commits
  8. 03 Nov, 2022 2 commits
  9. 02 Nov, 2022 6 commits
  10. 01 Nov, 2022 5 commits
  11. 31 Oct, 2022 3 commits
  12. 28 Oct, 2022 2 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