Remove direct bitcoin calls from qt/peertablemodel.cpp

This commit is contained in:
Russell Yanofsky
2017-04-17 15:57:19 -04:00
committed by John Newbery
parent d7c2c95948
commit e0b66a3b7c
6 changed files with 57 additions and 28 deletions

View File

@@ -86,9 +86,9 @@ private:
};
struct CNodeStateStats {
int nMisbehavior;
int nSyncHeight;
int nCommonHeight;
int nMisbehavior = 0;
int nSyncHeight = -1;
int nCommonHeight = -1;
std::vector<int> vHeightInFlight;
};