diff options
| author | Cory Fields <[email protected]> | 2016-12-31 02:05:15 -0500 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2017-01-04 10:10:35 -0500 |
| commit | 56212e20acf1534d443cb910c9bf3a30f84d0f02 (patch) | |
| tree | 5c67422a02655f9c919571ac7f07823fddc35f97 /src/net_processing.cpp | |
| parent | net: remove redundant max sendbuffer size check (diff) | |
| download | discoin-56212e20acf1534d443cb910c9bf3a30f84d0f02.tar.xz discoin-56212e20acf1534d443cb910c9bf3a30f84d0f02.zip | |
net: set message deserialization version when it's actually time to deserialize
We'll soon no longer have access to vRecvMsg, and this is more intuitive anyway.
Diffstat (limited to 'src/net_processing.cpp')
| -rw-r--r-- | src/net_processing.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net_processing.cpp b/src/net_processing.cpp index 3d38995c5..556975d14 100644 --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -2485,6 +2485,7 @@ bool ProcessMessages(CNode* pfrom, CConnman& connman, std::atomic<bool>& interru // at this point, any failure means we can delete the current message it++; + msg.SetVersion(pfrom->GetRecvVersion()); // Scan for message start if (memcmp(msg.hdr.pchMessageStart, chainparams.MessageStart(), CMessageHeader::MESSAGE_START_SIZE) != 0) { LogPrintf("PROCESSMESSAGE: INVALID MESSAGESTART %s peer=%d\n", SanitizeString(msg.hdr.GetCommand()), pfrom->id); |