Skip to content

Commit

Permalink
Merge pull request #213 from sorenstoutner/typos
Browse files Browse the repository at this point in the history
Fix typos.
  • Loading branch information
tobtoht authored Nov 12, 2024
2 parents d8aa157 + 765bdb1 commit c403d80
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/utils/nodes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,18 +312,18 @@ FeatherNode Nodes::pickEligibleNode() {
return rtn;
}

QVector<int> node_indeces;
QVector<int> node_indices;
int i = 0;
for (const auto &node: nodes) {
node_indeces.push_back(i);
node_indices.push_back(i);
i++;
}
unsigned seed = std::chrono::system_clock::now().time_since_epoch().count();
std::shuffle(node_indeces.begin(), node_indeces.end(), std::default_random_engine(seed));
std::shuffle(node_indices.begin(), node_indices.end(), std::default_random_engine(seed));

// Pick random eligible node
int mode_height = this->modeHeight(nodes);
for (int index : node_indeces) {
for (int index : node_indices) {
const FeatherNode &node = nodes.at(index);

// This may fail to detect bad nodes if cached nodes are used
Expand Down Expand Up @@ -359,7 +359,7 @@ FeatherNode Nodes::pickEligibleNode() {

// All nodes tried, and none eligible
// Don't show node exhaustion warning if single custom node is used
if (wsMode || node_indeces.size() > 1) {
if (wsMode || node_indices.size() > 1) {
this->exhausted();
}
return rtn;
Expand Down

0 comments on commit c403d80

Please sign in to comment.