mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-20 07:00:44 +02:00
Trivial: Fix two VarInt examples in serialize.h
This commit is contained in:
parent
41d8e78f94
commit
7bd5ff4623
@ -322,8 +322,8 @@ uint64_t ReadCompactSize(Stream& is)
|
|||||||
* 0: [0x00] 256: [0x81 0x00]
|
* 0: [0x00] 256: [0x81 0x00]
|
||||||
* 1: [0x01] 16383: [0xFE 0x7F]
|
* 1: [0x01] 16383: [0xFE 0x7F]
|
||||||
* 127: [0x7F] 16384: [0xFF 0x00]
|
* 127: [0x7F] 16384: [0xFF 0x00]
|
||||||
* 128: [0x80 0x00] 16511: [0x80 0xFF 0x7F]
|
* 128: [0x80 0x00] 16511: [0xFF 0x7F]
|
||||||
* 255: [0x80 0x7F] 65535: [0x82 0xFD 0x7F]
|
* 255: [0x80 0x7F] 65535: [0x82 0xFE 0x7F]
|
||||||
* 2^32: [0x8E 0xFE 0xFE 0xFF 0x00]
|
* 2^32: [0x8E 0xFE 0xFE 0xFF 0x00]
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user