Skip to content

Commit

Permalink
qt, refactor: Drop no longer used PeerTableModel::getRowByNodeId func
Browse files Browse the repository at this point in the history
  • Loading branch information
hebasto committed Mar 6, 2021
1 parent b08dd04 commit 56e5f5a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 20 deletions.
19 changes: 0 additions & 19 deletions src/qt/peertablemodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,10 @@ class PeerTablePriv
public:
/** Local cache of peer information */
QList<CNodeCombinedStats> cachedNodeStats;
/** Index of rows by node ID */
std::map<NodeId, int> mapNodeRows;

/** Pull a full list of peers from vNodes into our cache */
void refreshPeers(interfaces::Node& node)
{
{
cachedNodeStats.clear();

interfaces::Node::NodesStats nodes_stats;
Expand All @@ -40,13 +37,6 @@ class PeerTablePriv
stats.nodeStateStats = std::get<2>(node_stats);
cachedNodeStats.append(stats);
}
}

// build index map
mapNodeRows.clear();
int row = 0;
for (const CNodeCombinedStats& stats : cachedNodeStats)
mapNodeRows.insert(std::pair<NodeId, int>(stats.nodeStats.nodeid, row++));
}

int size() const
Expand Down Expand Up @@ -193,12 +183,3 @@ void PeerTableModel::refresh()
priv->refreshPeers(m_node);
Q_EMIT layoutChanged();
}

int PeerTableModel::getRowByNodeId(NodeId nodeid)
{
std::map<NodeId, int>::iterator it = priv->mapNodeRows.find(nodeid);
if (it == priv->mapNodeRows.end())
return -1;

return it->second;
}
1 change: 0 additions & 1 deletion src/qt/peertablemodel.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ class PeerTableModel : public QAbstractTableModel
public:
explicit PeerTableModel(interfaces::Node& node, QObject* parent);
~PeerTableModel();
int getRowByNodeId(NodeId nodeid);
void startAutoRefresh();
void stopAutoRefresh();

Expand Down

0 comments on commit 56e5f5a

Please sign in to comment.