mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 19:49:28 +00:00
Nodes: fix missing .onion nodes from hardcoded list
This commit is contained in:
parent
c65bc42a4a
commit
c691a41d53
1 changed files with 1 additions and 1 deletions
|
@ -162,7 +162,7 @@ void Nodes::loadConfig() {
|
|||
if (nodes_obj.contains(netKey)) {
|
||||
QJsonArray nodes_list;
|
||||
nodes_list = nodes_json[netKey].toObject()["tor"].toArray();
|
||||
nodes_list.append(nodes_list = nodes_json[netKey].toObject()["clearnet"].toArray());
|
||||
nodes_list.append(nodes_json[netKey].toObject()["clearnet"].toArray());
|
||||
|
||||
for (auto node: nodes_list) {
|
||||
FeatherNode wsNode(node.toString());
|
||||
|
|
Loading…
Reference in a new issue