Mark `rpc_interfaces.bind_address` as required field in docs (#3480)

This commit is contained in:
Julien Maffre 2022-02-01 14:15:08 +00:00 коммит произвёл GitHub
Родитель 171dc2a6e9
Коммит b3032e5d67
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -89,7 +89,7 @@ def print_object(output, obj, depth=0, required_entries=None, additional_desc=No
output,
v["additionalProperties"]["properties"],
depth=depth + 1,
required_entries=reqs,
required_entries=v["additionalProperties"].get("required", []),
)
if "items" in v and v["items"]["type"] == "object":
print_object(

Просмотреть файл

@ -62,7 +62,7 @@
},
"required": ["bind_address"]
},
"description": "Interfaces to listen on for incoming client TLS connections, as a dictionnary from unique interface name to RPC interface information"
"description": "Interfaces to listen on for incoming client TLS connections, as a dictionary from unique interface name to RPC interface information"
}
},
"description": "This section includes configuration for the interfaces a node listens on (for both client and node-to-node communications)",