-
Notifications
You must be signed in to change notification settings - Fork 20.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
p2p/discover: Node Discovery Protocol #275
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fjl
force-pushed
the
udp-kademlia
branch
4 times, most recently
from
January 30, 2015 15:59
0ee79d6
to
cc6fc2a
Compare
crypto.Sha3(append(foo, bar)) --> crypto.Sha3(foo, bar) crypto.Sha3([]byte{}) --> crypto.Sha3()
fjl
changed the title
[WIP] Node Discovery Protocol
p2p/discover: Node Discovery Protocol
Feb 2, 2015
This is now part of #292. |
acud
pushed a commit
to acud/go-ethereum
that referenced
this pull request
Mar 1, 2018
…e-syncer-intervals Swarm network rewrite syncer intervals
ngtuna
added a commit
to ngtuna/tomochain
that referenced
this pull request
Nov 12, 2018
fix unit test tx pool
AusIV
pushed a commit
to NoteGio/go-ethereum
that referenced
this pull request
Feb 22, 2021
…thereum#275) This enforces what was an implicit requirement that the faucet be configured explicitly for a chain configuration. Fixing https://github.com/etclabscore/core-geth/pull/269/files#r551442004, the bespoke log happens whent neither -attach nor -chain.xxx is set, the behavior for which should be undefined. Date: 2021-01-04 12:37:10-06:00 Signed-off-by: meows <[email protected]>
tony-ricciardi
pushed a commit
to tony-ricciardi/go-ethereum
that referenced
this pull request
Jan 20, 2022
maoueh
pushed a commit
to streamingfast/go-ethereum
that referenced
this pull request
May 3, 2022
This will create a static build using Go native networking stack. Checked and it works stable for all archs and distros.
weiihann
pushed a commit
to weiihann/go-ethereum
that referenced
this pull request
Nov 30, 2023
activate proof generation on fork + remove code dups use go-verkle's post-state API to verify proofs (ethereum#262) use prague as the verkle activation fork (ethereum#263) upgrade to latest go-ipa activate verkle transition in "miner" (ethereum#265) fix: do not force cancunTime upon verkle activation workaround: do not use root translation in replay workaround: deactivate overlay transition for now fixes from trying to get the devnet to work (ethereum#267) this line was left out from the previous commit upgrade to go-verkle with fixed newvalue serialization fix: ensure point cache isn't nil in copy (ethereum#268) fix: dependency cycle in tests (ethereum#269) upgrade to latest go-verkle fix: write trie preimage data to db (ethereum#274) fix: zero-root in produced block + sync (ethereum#275) upgrade go-ipa fix build fix typo include review feedback add switch to add proofs to blocks (ethereum#278) add fee recipient to witness (ethereum#279) touch all fields in withdrawal account header (ethereum#277)
luanxu-mxc
pushed a commit
to MXCzkEVM/mxc-geth
that referenced
this pull request
Sep 2, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This implements the Node Discovery Protocol as described here. There are some missing bits and TODOs which I will take care of, but the basic structure will likely remain as it is now.