mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 03:47:29 -03:00
qt, refactor: Drop no longer used PeerTableModel::getRowByNodeId func
This commit is contained in:
parent
9a9f180df0
commit
5a4a15d2b4
2 changed files with 0 additions and 20 deletions
|
@ -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;
|
||||
|
@ -40,13 +37,6 @@ public:
|
|||
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
|
||||
|
@ -198,12 +188,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;
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue