1. 13 May, 2019 6 commits
  2. 11 May, 2019 1 commit
  3. 10 May, 2019 16 commits
  4. 08 May, 2019 7 commits
  5. 07 May, 2019 5 commits
  6. 04 May, 2019 1 commit
  7. 02 May, 2019 2 commits
  8. 30 Apr, 2019 2 commits
    • Martin Holst Swende's avatar
      consensus,core,miner: avoid overhead of creating a new block (#19301) · 4c90efdf
      Martin Holst Swende authored
      * consensus,core,miner: avoid overhead of creating a new block
      
      * consensus: nitpick dot
      
      * consensus: fix some comment formatting nits
      4c90efdf
    • Felix Lange's avatar
      p2p/discover: split out discv4 code · dba1750e
      Felix Lange authored
      This change restructures the internals of p2p/discover to make room for
      the discv5 code which will soon be added to this package.
      
      - packet type names now have a "V4" suffix.
      - ListenUDP returns *UDPv4 instead of *Table. This technically breaks
        the API but the only caller in go-ethereum is package p2p, which uses
        a compatible interface and doesn't need changes.
      - The internal transport interface is changed to make Table reusable for v5.
      - The 'lookup' code moves from table to transport. This required
        updating the lookup unit test to use udpTest instead of a custom transport.
      dba1750e