diff options
| author | Pieter Wuille <[email protected]> | 2012-06-14 18:31:08 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-06-14 18:31:08 +0200 |
| commit | c971112dfaeab836d8b626c862ede0059f5325b8 (patch) | |
| tree | ab94565245c3e97c40165109c0dc8b445bad32ae /src/main.cpp | |
| parent | Merge pull request #1459 from laanwj/2012_06_trayiconmenu (diff) | |
| download | discoin-c971112dfaeab836d8b626c862ede0059f5325b8.tar.xz discoin-c971112dfaeab836d8b626c862ede0059f5325b8.zip | |
Use a 64-bit nonce in ping
Former code sent '0' as nonce, which was serialized as 32-bit.
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index fa3eb592a..be2733192 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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 // right now. if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) { + uint64 nonce = 0; if (pto->nVersion > BIP0031_VERSION) - pto->PushMessage("ping", 0); + pto->PushMessage("ping", nonce); else pto->PushMessage("ping"); } |