good morning!!!!

Skip to content
Snippets Groups Projects
  1. Nov 12, 2019
  2. Mar 27, 2019
  3. Feb 19, 2019
  4. Feb 01, 2019
  5. Jan 23, 2019
  6. Dec 10, 2018
  7. Nov 15, 2018
  8. Oct 04, 2018
    • Martin Holst Swende's avatar
      core/vm: faster create/create2 (#17806) · 89a32451
      Martin Holst Swende authored
      * core/vm/runtim: benchmark create/create2
      
      * core/vm: do less hashing in CREATE2
      
      * core/vm: avoid storing jumpdest analysis for initcode
      
      * core/vm: avoid unneccesary lookups, remove unused fields
      
      * core/vm: go formatting tests
      
      * core/vm: save jumpdest analysis locally
      
      * core/vm: use common.Hash instead of nil, fix review comments
      
      * core/vm: removed type destinations
      
      * core/vm: correct check for empty hash
      
      * eth: more elegant api_tracer
      
      * core/vm: address review concerns
      89a32451
  9. Sep 19, 2018
  10. Aug 28, 2018
  11. Aug 21, 2018
  12. Aug 09, 2018
  13. Jun 21, 2018
    • Péter Szilágyi's avatar
      trie: cache collapsed tries node, not rlp blobs (#16876) · d926bf2c
      Péter Szilágyi authored
      The current trie memory database/cache that we do pruning on stores
      trie nodes as binary rlp encoded blobs, and also stores the node
      relationships/references for GC purposes. However, most of the trie
      nodes (everything apart from a value node) is in essence just a
      collection of references.
      
      This PR switches out the RLP encoded trie blobs with the
      collapsed-but-not-serialized trie nodes. This permits most of the
      references to be recovered from within the node data structure,
      avoiding the need to track them a second time (expensive memory wise).
      d926bf2c
  14. Jun 04, 2018
  15. May 07, 2018
  16. Apr 27, 2018
  17. Feb 05, 2018
  18. Jan 04, 2018
  19. Jan 03, 2018
  20. Jan 02, 2018
  21. Dec 21, 2017
    • Péter Szilágyi's avatar
      cmd, core, eth/tracers: support fancier js tracing (#15516) · 5258785c
      Péter Szilágyi authored
      * cmd, core, eth/tracers: support fancier js tracing
      
      * eth, internal/web3ext: rework trace API, concurrency, chain tracing
      
      * eth/tracers: add three more JavaScript tracers
      
      * eth/tracers, vendor: swap ottovm to duktape for tracing
      
      * core, eth, internal: finalize call tracer and needed extras
      
      * eth, tests: prestate tracer, call test suite, rewinding
      
      * vendor: fix windows builds for tracer js engine
      
      * vendor: temporary duktape fix
      
      * eth/tracers: fix up 4byte and evmdis tracer
      
      * vendor: pull in latest duktape with my upstream fixes
      
      * eth: fix some review comments
      
      * eth: rename rewind to reexec to make it more obvious
      
      * core/vm: terminate tracing using defers
      5258785c
Loading