Browse Source

Merge pull request #4668

9297763 [Qt] Add TRY_LOCK back to peertablemodel (Cozz Lovan)
0.10
Wladimir J. van der Laan 10 years ago
parent
commit
3e089a00e7
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 6
      src/qt/peertablemodel.cpp

6
src/qt/peertablemodel.cpp

@ -75,8 +75,14 @@ public: @@ -75,8 +75,14 @@ public:
}
// Try to retrieve the CNodeStateStats for each node.
{
TRY_LOCK(cs_main, lockMain);
if (lockMain)
{
BOOST_FOREACH(CNodeCombinedStats &stats, cachedNodeStats)
stats.fNodeStateStatsAvailable = GetNodeStateStats(stats.nodeStats.nodeid, stats.nodeStateStats);
}
}
if (sortColumn >= 0)
// sort cacheNodeStats (use stable sort to prevent rows jumping around unneceesarily)

Loading…
Cancel
Save