good morning!!!!

Skip to content
Snippets Groups Projects
  1. Jul 22, 2019
  2. Jul 19, 2019
  3. Jul 17, 2019
  4. Jul 08, 2019
  5. Jul 05, 2019
  6. Jun 28, 2019
    • Gary Rong's avatar
      all: on-chain oracle checkpoint syncing (#19543) · f7cdea2b
      Gary Rong authored
      * all: implement simple checkpoint syncing
      
      cmd, les, node: remove callback mechanism
      
      cmd, node: remove callback definition
      
      les: simplify the registrar
      
      les: expose checkpoint rpc services in the light client
      
      les, light: don't store untrusted receipt
      
      cmd, contracts, les: discard stale checkpoint
      
      cmd, contracts/registrar: loose restriction of registeration
      
      cmd, contracts: add replay-protection
      
      all: off-chain multi-signature contract
      
      params: deploy checkpoint contract for rinkeby
      
      cmd/registrar: add raw signing mode for registrar
      
      cmd/registrar, contracts/registrar, les: fixed messages
      
      * cmd/registrar, contracts/registrar: fix lints
      
      * accounts/abi/bind, les: address comments
      
      * cmd, contracts, les, light, params: minor checkpoint sync cleanups
      
      * cmd, eth, les, light: move checkpoint config to config file
      
      * cmd, eth, les, params: address comments
      
      * eth, les, params: address comments
      
      * cmd: polish up the checkpoint admin CLI
      
      * cmd, contracts, params: deploy new version contract
      
      * cmd/checkpoint-admin: add another flag for clef mode signing
      
      * cmd, contracts, les: rename and regen checkpoint oracle with abigen
      f7cdea2b
  7. Jun 21, 2019
  8. Jun 13, 2019
  9. Jun 11, 2019
  10. Jun 07, 2019
    • Felix Lange's avatar
      p2p/enode: improve IPv6 support, add ENR text representation (#19663) · e83c3ccc
      Felix Lange authored
      * p2p/enr: add entries for for IPv4/IPv6 separation
      
      This adds entry types for "ip6", "udp6", "tcp6" keys. The IP type stays
      around because removing it would break a lot of code and force everyone
      to care about the distinction.
      
      * p2p/enode: track IPv4 and IPv6 address separately
      
      LocalNode predicts the local node's UDP endpoint and updates the record.
      This change makes it predict IPv4 and IPv6 endpoints separately since
      they can now be in the record at the same time.
      
      * p2p/enode: implement base64 text format
      * all: switch to enode.Parse(...)
      
      This allows passing base64-encoded node records to all the places that
      previously accepted enode:// URLs. The URL format is still supported.
      
      * cmd/bootnode, p2p: log node URL instead of ENR
      
      ...and return the base64 record in NodeInfo.
      e83c3ccc
    • Felix Lange's avatar
      cmd/devp2p: add devp2p debug tool (#19657) · 896322bf
      Felix Lange authored
      * p2p/discover: export Ping and RequestENR
      
      These two are useful for checking the status of a node.
      
      * cmd/devp2p: add devp2p debug tool
      
      This is a new tool for debugging p2p issues. It supports a few
      basic tasks for now, but many more things can and will be added
      in the near future.
      
         devp2p enrdump            -- prints ENRs readably
         devp2p discv4 ping        -- checks if a node is up
         devp2p discv4 requestenr  -- gets a node's record
         devp2p discv4 resolve     -- finds a node through the DHT
      896322bf
  11. Jun 04, 2019
  12. May 25, 2019
  13. May 15, 2019
  14. May 13, 2019
  15. May 10, 2019
  16. Apr 30, 2019
    • 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
  17. Apr 25, 2019
    • Janoš Guljaš's avatar
      swarm/network: fix data races in TestInitialPeersMsg test (#19490) · 3873a731
      Janoš Guljaš authored
      * swarm/network: fix data races in TestInitialPeersMsg test
      
      * swarm/network: add Kademlia.Saturation method with lock
      
      * swarm/network: add Hive.Peer method to safely retrieve a bzz peer
      
      * swarm/network: remove duplicate comment
      
      * p2p/testing: prevent goroutine leak in ProtocolTester
      
      * swarm/network: fix data race in newBzzBaseTesterWithAddrs
      
      * swarm/network: fix goroutone leaks in testInitialPeersMsg
      
      * swarm/network: raise number of peer check attempts in testInitialPeersMsg
      
      * swarm/network: use Hive.Peer in Hive.PeerInfo function
      
      * swarm/network: reduce the scope of mutex lock in newBzzBaseTesterWithAddrs
      
      * swarm/storage: disable TestCleanIndex with race detector
      3873a731
  18. Apr 18, 2019
  19. Apr 10, 2019
  20. Apr 08, 2019
  21. Mar 22, 2019
    • Louis Holbrook's avatar
      swarm/network: Use different privatekey for bzz overlay in sim (#19313) · 2f5b6cb4
      Louis Holbrook authored
      * cmd/swarm, p2p, swarm: Enable ENR in binary/execadapter
      
      * cmd/p2p/swarm: Remove comments + config.Enode nomarshal
      
      * p2p/simulations: Remove superfluous error check
      
      * p2p/simulation: Move init enode comment
      
      * swarm, p2p/simulations, cmd/swarm: Use nodekey in binary record sign
      
      * swarm/network, swarm/pss: Dervice bzzkey
      
      * swarm/pss: Remove unused function
      
      * swarm/network: Store swarm private key in simulation bucket
      
      * swarm/pss: Shorten TextProxNetwork shortrunning test timeout
      
      * swarm/pss: Increase prox test timeout
      
      * swarm/pss: Increase timeout slightly on shortrunning proxtest
      
      * swarm/network: Simplify bucket instantiation in servicectx func
      
      * p2p/simulations: Tcpport -> udpport
      
      * swarm/network, swarm/pss: Simplify + correct lock in servicefunc sim
      
      * swarm/network: Cleanup after rebase on extract swarm enode new
      
      * p2p/simulations, swarm/network: Make exec disc test pass
      
      * swarm/network: Prune ye olde comment
      
      * swarm/pss: Correct revised bzzkey method call
      
      * swarm/network: Clarify comment about privatekey generation data
      
      * swarm/pss: Fix syntax errors after rebase
      
      * swarm/network: Rename misleadingly named method
      
      (amend commit to trigger ci - attempt 5)
      2f5b6cb4
    • Louis Holbrook's avatar
      cmd/swarm, p2p, swarm: Enable ENR in binary/execadapter (#19309) · 09924cbc
      Louis Holbrook authored
      * cmd/swarm, p2p, swarm: Enable ENR in binary/execadapter
      
      * cmd/p2p/swarm: Remove comments + config.Enode nomarshal
      
      * p2p/simulations: Remove superfluous error check
      
      * p2p/simulation: Move init enode comment
      
      * swarm/api: Check error in config test
      
      * swarm, p2p/simulations, cmd/swarm: Use nodekey in binary record sign
      
      * cmd/swarm: Make nodekey available for swarm api config
      09924cbc
  22. Mar 15, 2019
    • Louis Holbrook's avatar
      swarm, p2p: Prerequities for ENR replacing handshake (#19275) · 4b4f03ca
      Louis Holbrook authored
      * swarm/api, swarm/network, p2p/simulations: Prerequisites for handshake remove
      
      * swarm, p2p: Add full sim node configs for protocoltester
      
      * swarm/network: Make stream package pass tests
      
      * swarm/network: Extract peer and addr types out of protocol file
      
      * p2p, swarm: Make p2p/protocols tests pass + rename types.go
      
      * swarm/network: Deactivate ExecAdapter test until binary ENR prep
      
      * swarm/api: Remove comments
      
      * swarm/network: Uncomment bootnode record load
      4b4f03ca
  23. Mar 13, 2019
  24. Mar 08, 2019
    • Ferenc Szabo's avatar
      p2p/protocols: fix data race in TestProtocolHook (#19242) · f82185a4
      Ferenc Szabo authored
      dummyHook's fields were concurrently written by nodes and read by
      the test. The simplest solution is to protect all fields with a mutex.
      
      Enable: TestMultiplePeersDropSelf, TestMultiplePeersDropOther as they
      seemingly accidentally stayed disabled during a refactor/rewrite
      since 1836366a.
      
      resolves ethersphere/go-ethereum#1286
      f82185a4
  25. Mar 07, 2019
  26. Mar 05, 2019
    • holisticode's avatar
      Enable longrunning tests to run (#19208) · 81ed7001
      holisticode authored
      * p2p/simulations: increased snapshot load timeout for debugging
      
      * swarm/network/stream: less nodes for snapshot longrunning tests
      
      * swarm/network: fixed longrunning tests
      
      * swarm/network/stream: store kademlia in bucket
      
      * swarm/network/stream: disabled healthy check in delivery tests
      
      * swarm/network/stream: longer SyncUpdateDelay for longrunning tests
      
      * swarm/network/stream: more debug output
      
      * swarm/network/stream: reduced longrunning snapshot tests to 64 nodes
      
      * swarm/network/stream: don't WaitTillHealthy in SyncerSimulation
      
      * swarm/network/stream: cleanup for PR
      81ed7001
  27. Feb 26, 2019
    • Zsolt Felföldi's avatar
      les, les/flowcontrol: improved request serving and flow control (#18230) · c2003ed6
      Zsolt Felföldi authored
      This change
      
      - implements concurrent LES request serving even for a single peer.
      - replaces the request cost estimation method with a cost table based on
        benchmarks which gives much more consistent results. Until now the
        allowed number of light peers was just a guess which probably contributed
        a lot to the fluctuating quality of available service. Everything related
        to request cost is implemented in a single object, the 'cost tracker'. It
        uses a fixed cost table with a global 'correction factor'. Benchmark code
        is included and can be run at any time to adapt costs to low-level
        implementation changes.
      - reimplements flowcontrol.ClientManager in a cleaner and more efficient
        way, with added capabilities: There is now control over bandwidth, which
        allows using the flow control parameters for client prioritization.
        Target utilization over 100 percent is now supported to model concurrent
        request processing. Total serving bandwidth is reduced during block
        processing to prevent database contention.
      - implements an RPC API for the LES servers allowing server operators to
        assign priority bandwidth to certain clients and change prioritized
        status even while the client is connected. The new API is meant for
        cases where server operators charge for LES using an off-protocol mechanism.
      - adds a unit test for the new client manager.
      - adds an end-to-end test using the network simulator that tests bandwidth
        control functions through the new API.
      c2003ed6
  28. Feb 19, 2019
Loading