diff options
author | Ben Woosley <ben.woosley@gmail.com> | 2020-03-03 08:42:50 -0500 |
---|---|---|
committer | Ben Woosley <ben.woosley@gmail.com> | 2020-03-04 13:45:29 -0500 |
commit | 7a810b1d7a9d03818706dc94457dc3255f062796 (patch) | |
tree | 6879f95472c704bc48e85beaca23b91b330f1c46 /src/net.h | |
parent | e6fc63ec7ee637a4b533e4d7b22def05e74e1dff (diff) |
refactor: Convert ping wait time from double to int64_t
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -597,7 +597,7 @@ public: NetPermissionFlags m_permissionFlags; bool m_legacyWhitelisted; int64_t m_ping_usec; - double dPingWait; + int64_t m_ping_wait_usec; int64_t m_min_ping_usec; CAmount minFeeFilter; // Our address, as reported by the peer |