good morning!!!!

Skip to content
Snippets Groups Projects
  1. Jul 03, 2021
  2. Jul 01, 2021
  3. Jun 22, 2021
  4. Jun 19, 2021
  5. Jun 18, 2021
  6. Jun 16, 2021
  7. Jun 15, 2021
  8. Jun 13, 2021
    • BitBaseBit's avatar
      Implemented panic handling, graceful shutdown and reporting for all goroutines... · 7ed337cd
      BitBaseBit authored
      Implemented panic handling, graceful shutdown and reporting for all goroutines that don't explicitly handle them. (#2153)
      
      * implemented crash reporting for all goroutine panics that aren't handled explicitly
      
      * implemented crash reporting for all goroutine panics that aren't handled explicitly
      
      * changed node defaults back to originals after testing
      
      * implemented panic handling for all goroutines that don't explicitly handle them, outputting the stack trace to a file in crashreports
      
      * handling panics on all goroutines gracefully
      
      * updated missing call
      
      * error assignment
      
      * implemented suggestions
      
      * path.Join added
      
      * implemented Evgeny's suggestions
      
      * changed path.Join to filepath.Join for cross-platform
      
      * added err check
      
      * updated RecoverStackTrace to LogPanic
      
      * updated closures
      
      * removed call of common.Go to some goroutines
      
      * updated scope capture
      
      * removed testing files
      
      * reverted back to original method, I feel like its less intrusive
      
      * update filename for clarity
      7ed337cd
  9. Jun 04, 2021
  10. Jun 02, 2021
  11. May 30, 2021
  12. May 28, 2021
  13. May 27, 2021
  14. May 22, 2021
    • Alex Sharov's avatar
      Check version of remote services (#1989) · 14c15cba
      Alex Sharov authored
      
      * save
      
      * save
      
      * Squashed 'interfaces/' content from commit 08c32a09e
      
      git-subtree-dir: interfaces
      git-subtree-split: 08c32a09e40b1e6fcb5922e723191c9477545356
      
      * Revert "Squashed 'interfaces/' content from commit 08c32a09e"
      
      This reverts commit 8393d9fd
      
      * save
      
      * seve
      
      * Squashed 'interfaces/' content from commit dd6a42724
      
      git-subtree-dir: interfaces
      git-subtree-split: dd6a42724401f34c21662ca1aa1718effb92320d
      
      * ensure versions compatibility of all remote services
      
      * Revert "Squashed 'interfaces/' content from commit dd6a42724"
      
      This reverts commit 2a764bf9
      
      * Squashed 'interfaces/' content from commit dd6a42724
      
      git-subtree-dir: interfaces
      git-subtree-split: dd6a42724401f34c21662ca1aa1718effb92320d
      
      * Revert "Squashed 'interfaces/' content from commit dd6a42724"
      
      This reverts commit 52621846
      
      * Squashed 'interfaces/' content from commit dd6a42724
      
      git-subtree-dir: interfaces
      git-subtree-split: dd6a42724401f34c21662ca1aa1718effb92320d
      
      * a
      
      * a
      
      * a
      
      * a
      
      * a
      
      Co-authored-by: default avatarAlex Sharp <alexsharp@Alexs-MacBook-Pro.local>
      14c15cba
  15. May 20, 2021
  16. May 19, 2021
  17. May 18, 2021
  18. May 13, 2021
  19. Apr 30, 2021
    • Alex Sharov's avatar
      add --sentry.api.addr flag (#1850) · 249b3098
      Alex Sharov authored
      * add --sentry.api.addr
      
      * add --sentry.api.addr
      
      * add --sentry.api.addr
      
      * add --sentry.api.addr
      
      * add --sentry.api.addr
      
      * add --sentry.api.addr
      
      * add --sentry.api.addr
      
      * add --sentry.api.addr
      
      * add --sentry.api.addr
      
      * add --sentry.api.addr
      249b3098
  20. Apr 02, 2021
  21. Mar 31, 2021
  22. Mar 30, 2021
  23. Mar 29, 2021
  24. Mar 26, 2021
  25. Mar 21, 2021
  26. Mar 18, 2021
  27. Mar 14, 2021
  28. Mar 12, 2021
    • Felföldi Zsolt's avatar
      les: UDP pre-negotiation of available server capacity (#22183) · e3f07820
      Felföldi Zsolt authored
      This PR implements the first one of the "lespay" UDP queries which
      is already useful in itself: the capacity query. The server pool is making
      use of this query by doing a cheap UDP query to determine whether it is
      worth starting the more expensive TCP connection process.
      # Conflicts:
      #	les/client.go
      #	les/clientpool.go
      #	les/clientpool_test.go
      #	les/enr_entry.go
      #	les/server.go
      #	les/vflux/client/serverpool.go
      #	les/vflux/client/serverpool_test.go
      #	les/vflux/server/balance.go
      #	les/vflux/server/balance_test.go
      #	les/vflux/server/prioritypool.go
      #	les/vflux/server/prioritypool_test.go
      #	p2p/nodestate/nodestate.go
      e3f07820
  29. Mar 10, 2021
    • Felix Lange's avatar
      p2p/dnsdisc: fix hot-spin when all trees are empty (#22313) · b958c644
      Felix Lange authored
      In the random sync algorithm used by the DNS node iterator, we first pick a random
      tree and then perform one sync action on that tree. This happens in a loop until any
      node is found. If no trees contain any nodes, the iterator will enter a hot loop spinning
      at 100% CPU.
      
      The fix is complicated. The iterator now checks if a meaningful sync action can
      be performed on any tree. If there is nothing to do, it waits for the next root record
      recheck time to arrive and then tries again.
      
      Fixes #22306
      b958c644
    • Martin Holst Swende's avatar
      eth: implement eth66 (#22241) · d1b207ff
      Martin Holst Swende authored
      * eth/protocols/eth: split up the eth protocol handlers
      
      * eth/protocols/eth: define eth-66 protocol messages
      
      * eth/protocols/eth: poc implement getblockheaders on eth/66
      
      * eth/protocols/eth: implement remaining eth-66 handlers
      
      * eth/protocols: define handler map for eth 66
      
      * eth/downloader: use protocol constants from eth package
      
      * eth/protocols/eth: add ETH66 capability
      
      * eth/downloader: tests for eth66
      
      * eth/downloader: fix error in tests
      
      * eth/protocols/eth: use eth66 for outgoing requests
      
      * eth/protocols/eth: remove unused error type
      
      * eth/protocols/eth: define protocol length
      
      * eth/protocols/eth: fix pooled tx over eth66
      
      * protocols/eth/handlers: revert behavioural change which caused tests to fail
      
      * eth/downloader: fix failing test
      
      * eth/protocols/eth: add testcases + fix flaw with header requests
      
      * eth/protocols: change comments
      
      * eth/protocols/eth: review fixes + fixed flaw in RequestOneHeader
      
      * eth/protocols: documentation
      
      * eth/protocols/eth: review concerns about types
      # Conflicts:
      #	eth/downloader/downloader_test.go
      #	eth/downloader/peer.go
      d1b207ff
    • Martin Holst Swende's avatar
      eth: don't wait for snap registration if we're not running snap (#22272) · aaeb4a40
      Martin Holst Swende authored
      Prevents a situation where we (not running snap) connects with a peer running snap, and get stalled waiting for snap registration to succeed (which will never happen), which cause a waitgroup wait to halt shutdown
      aaeb4a40
  30. Mar 09, 2021
    • Péter Szilágyi's avatar
      eth: check snap satelliteness, delegate drop to eth (#22235) · 08ad6aae
      Péter Szilágyi authored
      * eth: check snap satelliteness, delegate drop to eth
      
      * eth: better handle eth/snap satellite relation, merge reg/unreg paths
      # Conflicts:
      #	eth/handler.go
      #	eth/peer.go
      08ad6aae
    • Felföldi Zsolt's avatar
      les: switch to new discv5 (#21940) · 0d8a69b8
      Felföldi Zsolt authored
      
      This PR enables running the new discv5 protocol in both LES client
      and server mode. In client mode it mixes discv5 and dnsdisc iterators
      (if both are enabled) and filters incoming ENRs for "les" tag and fork ID.
      The old p2p/discv5 package and all references to it are removed.
      
      Co-authored-by: default avatarFelix Lange <fjl@twurst.com>
      # Conflicts:
      #	cmd/bootnode/main.go
      #	cmd/faucet/faucet.go
      #	cmd/utils/flags.go
      #	les/client.go
      #	les/commons.go
      #	les/enr_entry.go
      #	les/server.go
      #	les/serverpool.go
      #	les/serverpool_test.go
      #	mobile/discover.go
      #	mobile/params.go
      #	p2p/discv5/database.go
      #	p2p/discv5/metrics.go
      #	p2p/discv5/net.go
      #	p2p/discv5/net_test.go
      #	p2p/discv5/node.go
      #	p2p/discv5/node_test.go
      #	p2p/discv5/sim_test.go
      #	p2p/discv5/table.go
      #	p2p/discv5/table_test.go
      #	p2p/discv5/ticket.go
      #	p2p/discv5/topic.go
      #	p2p/discv5/topic_test.go
      #	p2p/discv5/udp.go
      #	p2p/server.go
      0d8a69b8
    • Martin Holst Swende's avatar
      eth, p2p: reserve half peer slots for snap peers during snap sync (#22171) · ff2b5888
      Martin Holst Swende authored
      * eth, p2p: reserve half peer slots for snap peers during snap sync
      
      * eth: less logging
      
      * eth: rework the eth/snap peer reservation logic
      
      * eth: rework the eth/snap peer reservation logic (again)
      ff2b5888
Loading