mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-11 07:17:53 +00:00
commit
194ea3186a
@ -3013,8 +3013,9 @@ bool SendMessages(CNode* pto, bool fSendTrickle)
|
|||||||
// Keep-alive ping. We send a nonce of zero because we don't use it anywhere
|
// Keep-alive ping. We send a nonce of zero because we don't use it anywhere
|
||||||
// right now.
|
// right now.
|
||||||
if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) {
|
if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) {
|
||||||
|
uint64 nonce = 0;
|
||||||
if (pto->nVersion > BIP0031_VERSION)
|
if (pto->nVersion > BIP0031_VERSION)
|
||||||
pto->PushMessage("ping", 0);
|
pto->PushMessage("ping", nonce);
|
||||||
else
|
else
|
||||||
pto->PushMessage("ping");
|
pto->PushMessage("ping");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user