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
|
## RLN Relay configuration
|
||||||
rlnRelayCredPath* {.
|
rlnRelayCredPath* {.
|
||||||
desc: "The path for peristing rln-relay credential",
|
desc: "The path for persisting rln-relay credential",
|
||||||
defaultValue: "",
|
defaultValue: "",
|
||||||
name: "rln-relay-cred-path"
|
name: "rln-relay-cred-path"
|
||||||
.}: string
|
.}: string
|
||||||
|
|
||||||
rlnRelayEthClientAddress* {.
|
rlnRelayEthClientAddress* {.
|
||||||
desc: "HTTP address of an Ethereum testnet client e.g., http://localhost:8540/",
|
desc: "HTTP address of an Ethereum testnet client e.g., http://localhost:8540/",
|
||||||
defaultValue: "http://localhost:8540/",
|
defaultValue: "",
|
||||||
name: "rln-relay-eth-client-address"
|
name: "rln-relay-eth-client-address"
|
||||||
.}: EthRpcUrl
|
.}: EthRpcUrl
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue