Skip to content

Commit

Permalink
Typo in BLOCKDATA module (wrong constraint for NUMBER for the first b…
Browse files Browse the repository at this point in the history
…lock in the conflation) (#575)
  • Loading branch information
OlivierBBB authored Jan 29, 2025
1 parent 81d5c3a commit e23c58a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blockdata/processing/number.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
(begin
(if-not-zero (is-first-block-in-conflation)
(begin (vanishes! (curr-NUMBER-hi))
(vanishes! (curr-NUMBER-lo))))
(eq! (curr-NUMBER-lo) FIRST_BLOCK_NUMBER)))
(if-not-zero (isnt-first-block-in-conflation)
(begin (eq! (curr-NUMBER-hi) (prev-NUMBER-hi))
(eq! (curr-NUMBER-lo) (+ (prev-NUMBER-lo) 1))))
Expand Down

0 comments on commit e23c58a

Please sign in to comment.