feat!: change default eth client value to empty string

Does not really make sense to have a default value set to localhost and
assume user has a local eth node running.
On the contrary, this can lead to issue where user doesn't understand
why the node tries to connect to localhost.
This commit is contained in:
fryorcraken 2024-07-01 13:05:15 +10:00 committed by fryorcraken
parent 079dfead73
commit 37ea65224f
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 2 additions and 2 deletions

View File

@ -60,14 +60,14 @@ type WakuNodeConf* = object
## RLN Relay configuration
rlnRelayCredPath* {.
desc: "The path for peristing rln-relay credential",
desc: "The path for persisting rln-relay credential",
defaultValue: "",
name: "rln-relay-cred-path"
.}: string
rlnRelayEthClientAddress* {.
desc: "HTTP address of an Ethereum testnet client e.g., http://localhost:8540/",
defaultValue: "http://localhost:8540/",
defaultValue: "",
name: "rln-relay-eth-client-address"
.}: EthRpcUrl