-
Notifications
You must be signed in to change notification settings - Fork 20.4k
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
cmd/devp2p: fix documentation for eth-test #22298
Conversation
cmd/devp2p/README.md
Outdated
@@ -96,7 +96,7 @@ geth --datadir <datadir> --nodiscover --nat=none --networkid 19763 --verbosity 5 | |||
|
|||
Then, run the following command, replacing `<enode ID>` with the enode of the geth node: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we call it <enode>
instead of <enode ID>
?
@@ -96,7 +96,7 @@ geth --datadir <datadir> --nodiscover --nat=none --networkid 19763 --verbosity 5 | |||
|
|||
Then, run the following command, replacing `<enode ID>` with the enode of the geth node: | |||
``` | |||
devp2p rlpx eth-test <enode ID> cmd/devp2p/internal/ethtest/testdata/fullchain.rlp cmd/devp2p/internal/ethtest/testdata/genesis.json | |||
devp2p rlpx eth-test <enode ID> cmd/devp2p/internal/ethtest/testdata/chain.rlp cmd/devp2p/internal/ethtest/testdata/genesis.json | |||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be nice to have a sentence here that says the node needs to be reset to the initial state before running the test again.
This PR fixes the documentation for the eth test suite, as the
fullchain.rlp
file is now namedchain.rlp
.