Skip to content

Commit

Permalink
fix(c-bindings): rln credential path key (#2564)
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-ramos committed Apr 4, 2024
1 parent a76c958 commit 3d752b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/waku_thread/config.nim
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ proc parseRLNRelay(jsonNode: JsonNode, conf: var WakuNodeConf, errorResp: var st
return false

conf.rlnRelay = jsonNode["enabled"].getBool()
conf.rlnRelayCredPath = jsonNode{"cred-password"}.getStr()
conf.rlnRelayCredPath = jsonNode{"cred-path"}.getStr()
conf.rlnRelayEthClientAddress = EthRpcUrl.parseCmdArg(jsonNode{"eth-client-address"}.getStr("http://localhost:8540"))
conf.rlnRelayEthContractAddress = jsonNode{"eth-contract-address"}.getStr()
conf.rlnRelayCredPassword = jsonNode{"cred-password"}.getStr()
Expand Down

0 comments on commit 3d752b1

Please sign in to comment.