- Jul 03, 2021
-
-
alex.sharov authored
-
alex.sharov authored
-
alex.sharov authored
-
- Jul 01, 2021
-
-
Alex Sharov authored
-
- Jun 22, 2021
-
-
Alex Sharov authored
-
- Jun 19, 2021
-
-
Alex Sharov authored
To break dependency to db implementation - move all db classes to "ethdb/kv" and leave in "ethdb" only interfaces (#2195)
-
- Jun 18, 2021
-
-
ledgerwatch authored
* Try to solve sentry hanging problem + p2p impovement from geth * Fix import * Finer stream lock Co-authored-by:
Alexey Sharp <alexeysharp@Alexeys-iMac.local>
-
Alex Sharov authored
-
- Jun 16, 2021
-
-
Artem Vorotnikov authored
-
- Jun 15, 2021
-
-
Artem Vorotnikov authored
* Always enable eth65 * Add ListenAddr65 to defaults
-
- Jun 13, 2021
-
-
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
-
- Jun 04, 2021
-
-
Alex Sharov authored
* add db label - later will add txpool db * move commit marker to kv_mdbx behind Chain label * Update migrations.go * clean Co-authored-by:
ledgerwatch <akhounov@gmail.com>
-
- Jun 02, 2021
-
-
Alex Sharov authored
* cli param to enable eth65 * save * save
-
- May 30, 2021
-
-
Alex Sharov authored
-
- May 28, 2021
-
-
ledgerwatch authored
* Drop download.v2 flag * Lint * Skip tests * Skip test Co-authored-by:
Alex Sharp <alexsharp@Alexs-MacBook-Pro.local>
-
Alex Sharov authored
-
- May 27, 2021
-
-
Alex Sharov authored
-
- May 22, 2021
-
-
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:
Alex Sharp <alexsharp@Alexs-MacBook-Pro.local>
-
- May 20, 2021
-
-
Alex Sharov authored
* rename * rename "make grpc" * rename "abi bindings templates" * rename "abi bindings templates"
-
Alex Sharov authored
-
Alex Sharov authored
-
- May 19, 2021
-
-
Alex Sharov authored
-
- May 18, 2021
-
-
Alex Sharov authored
-
- May 13, 2021
-
-
ledgerwatch authored
Co-authored-by:
Alex Sharp <alexsharp@Alexs-MacBook-Pro.local>
-
- Apr 30, 2021
-
-
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
-
- Apr 02, 2021
-
-
Alex Sharov authored
-
- Mar 31, 2021
-
-
Alex Sharov authored
-
- Mar 30, 2021
-
-
Artem Vorotnikov authored
-
- Mar 29, 2021
-
-
Artem Vorotnikov authored
-
- Mar 26, 2021
-
-
Artem Vorotnikov authored
-
- Mar 21, 2021
-
-
Artem Vorotnikov authored
-
- Mar 18, 2021
-
-
Igor Mandrigin authored
-
- Mar 14, 2021
-
-
Alexey Sharp authored
-
- Mar 12, 2021
-
-
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
-
- Mar 10, 2021
-
-
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
-
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
-
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
-
- Mar 09, 2021
-
-
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
-
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:
Felix 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
-
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)
-