good morning!!!!

Skip to content
Snippets Groups Projects
  1. Feb 04, 2020
  2. Feb 03, 2020
    • Martin Holst Swende's avatar
      trie: separate hashes and committer, collapse on commit · 5a9c9645
      Martin Holst Swende authored
      * trie:  make db insert use size instead of full data
      
      * core/state: minor optimization in state onleaf allocation
      
      * trie: implement dedicated committer and hasher
      
      * trie: use dedicated committer/hasher
      
      * trie: linter nitpicks
      
      * core/state, trie: avoid unnecessary storage trie load+commit
      
      * trie: review feedback, mainly docs + minor changes
      
      * trie: start deprecating old hasher
      
      * trie: fix misspell+lint
      
      * trie: deprecate hasher.go, make proof framework use new hasher
      
      * trie: rename pure_committer/hasher to committer/hasher
      
      * trie, core/state: fix review concerns
      
      * trie: more review concerns
      
      * trie: make commit collapse into hashnode, don't touch dirtyness
      
      * trie: goimports fixes
      
      * trie: remove panics
      5a9c9645
  3. Jan 17, 2020
  4. Jan 07, 2020
  5. Dec 02, 2019
  6. Nov 28, 2019
  7. Nov 25, 2019
  8. Nov 22, 2019
  9. Oct 28, 2019
    • Gary Rong's avatar
      trie: remove node ordering slice in sync batch (#19929) · ecdbb402
      Gary Rong authored
      When we flush a batch of trie nodes into database during the state
      sync, we should guarantee that all children should be flushed before
      parent.
      
      Actually the trie nodes commit order is strict by: children -> parent.
      But when we flush all ready nodes into db, we don't need the order
      anymore since
      
          (1) they are all ready nodes (no more dependency)
          (2) underlying database provides write atomicity
      ecdbb402
  10. Aug 12, 2019
  11. Jul 22, 2019
  12. Jul 05, 2019
  13. May 16, 2019
    • Péter Szilágyi's avatar
    • Gary Rong's avatar
      all: integrate the freezer with fast sync · 80469bea
      Gary Rong authored
      * all: freezer style syncing
      
      core, eth, les, light: clean up freezer relative APIs
      
      core, eth, les, trie, ethdb, light: clean a bit
      
      core, eth, les, light: add unit tests
      
      core, light: rewrite setHead function
      
      core, eth: fix downloader unit tests
      
      core: add receipt chain insertion test
      
      core: use constant instead of hardcoding table name
      
      core: fix rollback
      
      core: fix setHead
      
      core/rawdb: remove canonical block first and then iterate side chain
      
      core/rawdb, ethdb: add hasAncient interface
      
      eth/downloader: calculate ancient limit via cht first
      
      core, eth, ethdb: lots of fixes
      
      * eth/downloader: print ancient disable log only for fast sync
      80469bea
  14. May 13, 2019
  15. May 07, 2019
  16. Apr 12, 2019
  17. Apr 05, 2019
  18. Mar 26, 2019
  19. Mar 22, 2019
  20. Mar 14, 2019
  21. Mar 12, 2019
  22. Mar 06, 2019
  23. Feb 19, 2019
  24. Feb 16, 2019
  25. Feb 04, 2019
  26. Jan 04, 2019
  27. Nov 22, 2018
  28. Nov 16, 2018
  29. Nov 15, 2018
  30. Oct 08, 2018
  31. Sep 03, 2018
  32. Aug 24, 2018
  33. Aug 09, 2018
  34. Aug 08, 2018
  35. Aug 07, 2018
  36. Jul 30, 2018
  37. Jul 02, 2018
  38. 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
Loading