StratisBitcoinFullNode
StratisBitcoinFullNode copied to clipboard
Remove support for network messages without a checksum
NetwokrPeerConnection.ReadMessageAsync
allows messages without a checksum which was introduced at version 60002. Min protocol version is 70000, therefore there is no need to support that.
There are other code areas that check if checksum is there. They should be altered to always expect that.
If I am not mistaken checksum is actually not needed anymore @NicolasDorier mentioned something to me the other day.
Yes, I removed it because it is quite useless while I needed to do some hacks to not allocate some byte arrays.