fixes engine api help message in config.nim
somehow a const string still need `$` to display the content instead of the identifier itself.
This commit is contained in:
parent
d1dd5d5cad
commit
9230e6a024
|
@ -334,7 +334,7 @@ type
|
|||
engineApiAddress* {.
|
||||
desc: "Listening address for the Engine API"
|
||||
defaultValue: defaultAdminListenAddress
|
||||
defaultValueDesc: defaultAdminListenAddressDesc
|
||||
defaultValueDesc: $defaultAdminListenAddressDesc
|
||||
name: "engine-api-address" .}: ValidIpAddress
|
||||
|
||||
engineApiWsEnabled* {.
|
||||
|
@ -351,7 +351,7 @@ type
|
|||
engineApiWsAddress* {.
|
||||
desc: "Listening address for the WebSocket Engine API"
|
||||
defaultValue: defaultAdminListenAddress
|
||||
defaultValueDesc: defaultAdminListenAddressDesc
|
||||
defaultValueDesc: $defaultAdminListenAddressDesc
|
||||
name: "engine-api-ws-address" .}: ValidIpAddress
|
||||
|
||||
nodeKeyHex* {.
|
||||
|
|
Loading…
Reference in New Issue