|
|
|
@ -14,6 +14,7 @@
|
|
|
|
|
#include "clientversion.h"
|
|
|
|
|
#include "primitives/transaction.h"
|
|
|
|
|
#include "ui_interface.h"
|
|
|
|
|
#include "crypto/common.h"
|
|
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
|
#include <string.h>
|
|
|
|
@ -2007,7 +2008,7 @@ void CNode::EndMessage() UNLOCK_FUNCTION(cs_vSend)
|
|
|
|
|
|
|
|
|
|
// Set the size
|
|
|
|
|
unsigned int nSize = ssSend.size() - CMessageHeader::HEADER_SIZE;
|
|
|
|
|
memcpy((char*)&ssSend[CMessageHeader::MESSAGE_SIZE_OFFSET], &nSize, sizeof(nSize));
|
|
|
|
|
WriteLE32((uint8_t*)&ssSend[CMessageHeader::MESSAGE_SIZE_OFFSET], nSize);
|
|
|
|
|
|
|
|
|
|
// Set the checksum
|
|
|
|
|
uint256 hash = Hash(ssSend.begin() + CMessageHeader::HEADER_SIZE, ssSend.end());
|
|
|
|
|