Nodes: don't show exhaustion warning if single custom node is used

remotes/1691844314220217825/master
tobtoht 3 years ago
parent e0f7473ed4
commit 348685a025
Signed by untrusted user: tobtoht
GPG Key ID: 1CADD27F41F45C3C

@ -207,7 +207,8 @@ FeatherNode Nodes::pickEligibleNode() {
auto nodes = wsMode ? m_websocketNodes : m_customNodes;
if (nodes.count() == 0) {
this->exhausted();
if (wsMode)
this->exhausted();
return rtn;
}
@ -250,7 +251,10 @@ FeatherNode Nodes::pickEligibleNode() {
}
// All nodes tried, and none eligible
this->exhausted();
// Don't show node exhaustion warning if single custom node is used
if (wsMode || node_indeces.size() > 1) {
this->exhausted();
}
return rtn;
}

Loading…
Cancel
Save