aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
diff options
context:
space:
mode:
authorBen Woosley <ben.woosley@gmail.com>2020-03-03 08:35:01 -0500
committerBen Woosley <ben.woosley@gmail.com>2020-03-04 13:44:25 -0500
commitb054c46977667953593819248c167545aa3e7a40 (patch)
tree229182b06f83362f065d920e9accb1fbe4741393 /src/net.h
parentac5c5d0162a963be6fbaa53261c01705436a65f3 (diff)
downloadbitcoin-b054c46977667953593819248c167545aa3e7a40.tar.xz
refactor: Convert ping time from double to int64_t
Diffstat (limited to 'src/net.h')
-rw-r--r--src/net.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.h b/src/net.h
index 7d3eaa2e0d..17d1d67dea 100644
--- a/src/net.h
+++ b/src/net.h
@@ -596,7 +596,7 @@ public:
mapMsgCmdSize mapRecvBytesPerMsgCmd;
NetPermissionFlags m_permissionFlags;
bool m_legacyWhitelisted;
- double dPingTime;
+ int64_t m_ping_usec;
double dPingWait;
double dMinPing;
CAmount minFeeFilter;