mirror of https://github.com/waku-org/nwaku.git
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:
parent
079dfead73
commit
37ea65224f
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue