1. 06 Feb, 2023 5 commits
  2. 05 Feb, 2023 1 commit
    • lmittmann's avatar
      core/vm: improve EVM instance reusability (#26341) · 877d2174
      lmittmann authored
      This change improves reusability of the EVM struct. Two methods are added:
      
      - SetBlockContext(...)
      - SetTracer(...)
      
      Other attributes like the TransactionContext and the StateDB can already be updated.
      BlockContext and Tracer are partially not updateable right now. This change fixes it and
      opens the potential to reuse an EVM struct in more ways.
      Co-authored-by: 's avatarFelix Lange <fjl@twurst.com>
      877d2174
  3. 03 Feb, 2023 2 commits
  4. 02 Feb, 2023 3 commits
  5. 01 Feb, 2023 1 commit
  6. 31 Jan, 2023 4 commits
  7. 30 Jan, 2023 3 commits
  8. 27 Jan, 2023 7 commits
  9. 26 Jan, 2023 1 commit
  10. 25 Jan, 2023 2 commits
  11. 24 Jan, 2023 2 commits
  12. 23 Jan, 2023 2 commits
  13. 20 Jan, 2023 6 commits
  14. 19 Jan, 2023 1 commit
    • Sina Mahmoodi's avatar
      console, internal/jsre: fix autocomplete issues (#26518) · 2d2c069f
      Sina Mahmoodi authored
      Fixes #26505 where the console crashed when a property getter
      raised an exception during autocompletion. I also noticed while fixing this
      issue that autocomplete wasn't working for objects/fields with numbers in
      them (most importantly web3.<tab><tab>) which is also now fixed.
      2d2c069f