aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rawblock.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rawblock.nim b/src/rawblock.nim
index bf4de28..0a44550 100644
--- a/src/rawblock.nim
+++ b/src/rawblock.nim
@@ -16,7 +16,7 @@
16 16
17import integers, bitreader, bitwriter 17import integers, bitreader, bitwriter
18 18
19const maxDataBitLength = ((high(uint16).int - 1) div wordBitLength) * wordBitLength 19const maxDataBitLength = high(uint16).int - 1
20const bitLengthFieldBitLength = 2 * wordBitLength 20const bitLengthFieldBitLength = 2 * wordBitLength
21 21
22type RawBlock* = object 22type RawBlock* = object