Was showing a negative number. Changes to positive, since negative (T minus) usually indicates a future event.
This commit is contained in:
parent
f1e7570755
commit
83e047eaa7
1 changed files with 1 additions and 1 deletions
|
@ -479,7 +479,7 @@ CNode* ConnectNode(CAddress addrConnect, const char *pszDest, int64 nTimeout)
|
|||
/// debug print
|
||||
printf("trying connection %s lastseen=%.1fhrs\n",
|
||||
pszDest ? pszDest : addrConnect.ToString().c_str(),
|
||||
pszDest ? 0 : (double)(addrConnect.nTime - GetAdjustedTime())/3600.0);
|
||||
pszDest ? 0 : (double)(GetAdjustedTime() - addrConnect.nTime)/3600.0);
|
||||
|
||||
// Connect
|
||||
SOCKET hSocket;
|
||||
|
|
Loading…
Reference in a new issue