refactor: Convert min ping time from double to int64_t

This commit is contained in:
Ben Woosley
2020-03-03 08:40:29 -05:00
parent b054c46977
commit e6fc63ec7e
5 changed files with 7 additions and 7 deletions

View File

@@ -598,7 +598,7 @@ public:
bool m_legacyWhitelisted;
int64_t m_ping_usec;
double dPingWait;
double dMinPing;
int64_t m_min_ping_usec;
CAmount minFeeFilter;
// Our address, as reported by the peer
std::string addrLocal;