mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
Merge #8560: Trivial: Fix two VarInt examples in serialize.h
7bd5ff4
Trivial: Fix two VarInt examples in serialize.h (Christian Barcenas)
This commit is contained in:
parent
d97fa0402f
commit
c9ebd95163
@ -335,8 +335,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