diff options
author | Troy Giorshev <troygiorshev@gmail.com> | 2020-11-17 19:50:12 -0500 |
---|---|---|
committer | Jarol Rodriguez <jarolrod@tutanota.com> | 2021-03-23 19:57:17 -0400 |
commit | 39a9ec579f023ab262a1abd1f0c869be5b1f3f4d (patch) | |
tree | 75b719c278e2c3f3f6a526be14b4659381bb7f89 /src/consensus/tx_verify.h | |
parent | 47b99ab1a9e918022ea13f54765f5b4e6aad6140 (diff) |
Unconditionally check for fRelay field in test framework
There is a discrepancy in the implementation of our p2p protocol between
bitcoind and the testing framework. The fRelay field is an optional
field at the end of a version message as of protocol version 70001.
However, when deserializing a message in bitcoind, we don't check the
version to see if it should have an fRelay field or not. Instead we
unconditionally attempt to deserialize into the field.
This commit brings the testing framework in line with the implementation
in core.
This matters for a version message with the following fields:
Version = 60000
fRelay = 1
Bitcoind would deserialize this into a version message with
Version=60000 and fRelay=1, whereas (before this commit) our testing
framework would deserialize this into a version message with
Version=60000 and fRelay=0.
Diffstat (limited to 'src/consensus/tx_verify.h')
0 files changed, 0 insertions, 0 deletions