1. 15 Nov, 2018 8 commits
  2. 14 Nov, 2018 8 commits
  3. 13 Nov, 2018 4 commits
  4. 12 Nov, 2018 3 commits
  5. 09 Nov, 2018 2 commits
  6. 08 Nov, 2018 12 commits
  7. 07 Nov, 2018 3 commits
    • Anton Evangelatov's avatar
      swarm, cmd/swarm: address ineffectual assignments (#18048) · cf3b187b
      Anton Evangelatov authored
      * swarm, cmd/swarm: address ineffectual assignments
      
      * swarm/network: remove unused vars from testHandshake
      
      * swarm/storage/feed: revert cursor changes
      cf3b187b
    • Mark Vujevits's avatar
      swarm/network: light nodes are not dialed, saved and requested from (#17975) · 81533dea
      Mark Vujevits authored
      * RequestFromPeers does not use peers marked as lightnode
      
      * fix warning about variable name
      
      * write tests for RequestFromPeers
      
      * lightnodes should be omitted from the addressbook
      
      * resolve pr comments regarding logging, formatting and comments
      
      * resolve pr comments regarding comments and added a missing newline
      
      * add assertions to check peers in live connections
      81533dea
    • Felix Lange's avatar
      eth/downloader: speed up tests by generating chain only once (#17916) · 0bcff8f5
      Felix Lange authored
      * core: speed up GenerateChain
      
      Use a mock implementation of ChainReader instead of creating
      and destroying a BlockChain object for each generated block.
      
      * eth/downloader: speed up tests by generating chain only once
      
      This change reworks the downloader tests so they share a common test
      blockchain instead of generating a chain in every test. The tests are
      roughly twice as fast now.
      0bcff8f5