good morning!!!!

Skip to content
Snippets Groups Projects
  1. Nov 15, 2019
  2. Nov 14, 2019
  3. Nov 13, 2019
  4. Nov 08, 2019
    • Guillaume Ballet's avatar
      travis: enable test suite on ARM64 (#20219) · de2259d2
      Guillaume Ballet authored
      * travis: Enable ARM support
      
      * Include fixes from 20039
      
      * Add a trace to debug the invalid lookup issue
      
      * Try increasing the timeout to see if the arm test passes
      
      * Investigate the resolver issue
      
      * Increase arm64 timeout for clique test
      
      * increase timeout in tests for arm64
      
      * Only test the failing tests
      
      * Review feedback: don't export epsilon
      
      * Remove investigation tricks+include fjl's feeback
      
      * Revert the retry ahead of using the mock resolver
      
      * Fix rebase errors
      de2259d2
  5. Nov 07, 2019
  6. Nov 06, 2019
  7. Nov 05, 2019
  8. Nov 04, 2019
  9. Nov 02, 2019
  10. Oct 31, 2019
  11. Oct 30, 2019
  12. Oct 29, 2019
    • Péter Szilágyi's avatar
    • Péter Szilágyi's avatar
      Merge pull request #20204 from holiman/fix_downloader_race · e3063044
      Péter Szilágyi authored
      eth/downloader: fix data race in downloader
      e3063044
    • Felix Lange's avatar
      cmd/devp2p, p2p: dial using node iterator, discovery crawler (#20132) · 2c37142d
      Felix Lange authored
      * p2p/enode: add Iterator and associated utilities
      
      * p2p/discover: add RandomNodes iterator
      
      * p2p: dial using iterator
      
      * cmd/devp2p: add discv4 crawler
      
      * cmd/devp2p: WIP nodeset filter
      
      * cmd/devp2p: fixup lesFilter
      
      * core/forkid: add NewStaticFilter
      
      * cmd/devp2p: make -eth-network filter actually work
      
      * cmd/devp2p: improve crawl timestamp handling
      
      * cmd/devp2p: fix typo
      
      * p2p/enode: fix comment typos
      
      * p2p/discover: fix comment typos
      
      * p2p/discover: rename lookup.next to 'advance'
      
      * p2p: lower discovery mixer timeout
      
      * p2p/enode: implement dynamic FairMix timeouts
      
      * cmd/devp2p: add ropsten support in -eth-network filter
      
      * cmd/devp2p: tweak crawler log message
      2c37142d
    • Martin Holst Swende's avatar
      3eca7b5d
    • Michael Forney's avatar
      core/asm: assembly parser label fixes (#20210) · b0b27752
      Michael Forney authored
      * core/asm: Fix encoding of pushed labels
      
      EVM uses big-endian byte-order, so to pad a label value to 4 bytes,
      zeros must be added to the front, not the end.
      
      * core/asm: Fix PC calculations when a label is pushed
      
      Incrementing PC by 5 is only correct if the label appears after a jump,
      in which case there is an implicit push. When it appears after an explicit
      push, PC should only be incremented by 4.
      
      * core/asm: Allow JUMP with no argument
      
      This way, a label can be pushed explicitly, or loaded from memory to
      implement a jump table.
      b0b27752
  13. 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
    • Michael Forney's avatar
      cmd/evm: remove surrounding whitespace in hex input code (#20211) · 9c81387b
      Michael Forney authored
      This way, the output of `evm compile` can be used directly in `evm
      --codefile code.txt run`, without stripping the trailing newline first.
      9c81387b
Loading