-
Notifications
You must be signed in to change notification settings - Fork 57
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
Fix nim-waku config inconsistencies #543
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,35 +77,64 @@ type | |
name: "metrics-server-port" .}: uint16 | ||
|
||
### Waku v1 options | ||
fleetv1* {. | ||
# @TODO: deprecate this item. Name changed from `fleetv1` -> `fleet-v1` | ||
fleetv1_depr* {. | ||
desc: "Select the Waku v1 fleet to connect to" | ||
defaultValue: FleetV1.none | ||
name: "fleetv1" .}: FleetV1 | ||
|
||
fleetV1* {. | ||
desc: "Select the Waku v1 fleet to connect to" | ||
defaultValue: FleetV1.none | ||
name: "fleet-v1" .}: FleetV1 | ||
|
||
staticnodesv1* {. | ||
# @TODO: deprecate this item. Name changed from `staticnodev1` -> `staticnodes-v1` | ||
staticnodesv1_depr* {. | ||
desc: "Enode URL to directly connect with. Argument may be repeated" | ||
name: "staticnodev1" .}: seq[string] | ||
|
||
staticnodesV1* {. | ||
desc: "Enode URL to directly connect with. Argument may be repeated" | ||
name: "staticnodes-v1" .}: seq[string] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. idem above |
||
|
||
nodekeyv1* {. | ||
# @TODO: deprecate this item. Name changed from `nodekeyv1` -> `node-key-v1` | ||
nodekeyv1_depr* {. | ||
desc: "DevP2P node private key as hex", | ||
# TODO: can the rng be passed in somehow via Load? | ||
defaultValue: keys.KeyPair.random(keys.newRng()[]) | ||
name: "nodekeyv1" .}: keys.KeyPair | ||
|
||
nodeKeyV1* {. | ||
desc: "DevP2P node private key as hex", | ||
# TODO: can the rng be passed in somehow via Load? | ||
defaultValue: keys.KeyPair.random(keys.newRng()[]) | ||
name: "node-key-v1" .}: keys.KeyPair | ||
|
||
wakuPow* {. | ||
desc: "PoW requirement of Waku node.", | ||
defaultValue: 0.002 | ||
name: "waku-pow" .}: float64 | ||
|
||
### Waku v2 options | ||
staticnodesv2* {. | ||
# @TODO: deprecate this item. Name changed from `staticnodev2` -> `staticnodes-v2` | ||
staticnodesv2_depr* {. | ||
desc: "Multiaddr of peer to directly connect with. Argument may be repeated" | ||
name: "staticnodev2" }: seq[string] | ||
|
||
staticnodesV2* {. | ||
desc: "Multiaddr of peer to directly connect with. Argument may be repeated" | ||
name: "staticnodes-v2" }: seq[string] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. idem |
||
|
||
nodekeyv2* {. | ||
# @TODO: deprecate this item. Name changed from `nodekeyv2` -> `node-key-v2` | ||
nodekeyv2_depr* {. | ||
desc: "P2P node private key as hex" | ||
defaultValue: crypto.PrivateKey.random(Secp256k1, keys.newRng()[]).tryGet() | ||
name: "nodekeyv2" }: crypto.PrivateKey | ||
|
||
nodeKeyV2* {. | ||
desc: "P2P node private key as hex" | ||
defaultValue: crypto.PrivateKey.random(Secp256k1, keys.newRng()[]).tryGet() | ||
name: "node-key-v2" }: crypto.PrivateKey | ||
|
||
topics* {. | ||
desc: "Default topics to subscribe to (space separated list)" | ||
|
@@ -116,11 +145,6 @@ type | |
desc: "Flag whether to start store protocol", | ||
defaultValue: true | ||
name: "store" }: bool | ||
|
||
persistmessages* {. | ||
desc: "Enable message persistence: true|false", | ||
defaultValue: false | ||
name: "persist-messages" }: bool | ||
|
||
filter* {. | ||
desc: "Flag whether to start filter protocol", | ||
|
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
Oops, something went wrong.
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.
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.
I use this singular typically because of the way it works in confutils. At CLI it expects the usage as such
--staticnode:... --staticnode:...
for multiple staticnodes.The actual variable can be plural as it holds the full provided list in a
seq
.So to me it makes more sense like this from a UX PoV. It would be different when the CLI would expect a comma separated list. I've seen some users making that error in the past actually, trying to provide the comma separated list when it was called
--staticnodes
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.
This is a good point. As long as
--help
clearly indicates that it can be used multiple times.It would also match how flags like these are named in Nimbus:
https://github.com/status-im/nimbus-eth2/blob/e1a8049e/beacon_chain/conf.nim#L109-L111
https://github.com/status-im/nimbus-eth2/blob/e1a8049e/beacon_chain/conf.nim#L314-L316