fixed mixnode config template

This commit is contained in:
Jędrzej Stuczyński
2023-10-27 10:37:34 +01:00
parent 7659db973f
commit e70303fcaa
2 changed files with 8 additions and 1 deletions
@@ -109,7 +109,7 @@ impl AllowedAddressesProvider {
// annoyingly there exists a method of looking up a socket address but not an ip address,
// so append any port and perform the lookup
let Ok(sockets) = format!("{raw_host}:1789").to_socket_addrs() else {
warn!("failed to resolve ip address of node '{identity}' (hostname: {raw_host})");
warn!("failed to resolve ip address of node '{identity}' (hostname: '{raw_host}')");
return;
};
+7
View File
@@ -49,6 +49,13 @@ nym_api_urls = [
{{/each}}
]
# Addresses to nyxd validators via which the node can communicate with the chain directly.
nyxd_urls = [
{{#each mixnode.nyxd_urls }}
'{{this}}',
{{/each}}
]
[http]
# Socket address this node will use for binding its http API.
# default: `0.0.0.0:8000`