Skip to content

Commit

Permalink
gte fix
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffwalmsley committed Dec 8, 2023
1 parent e41c06c commit 1c5a4a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chia/wallet/puzzles/utility_macros.clib
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
)

(defun gte (atom_a atom_b)
(or (> atom_a atom_b) (= atom_a atom_b))
(not (> atom_b atom_a))
)

(defun lte (atom_a atom_b)
(or (> atom_b atom_a) (= atom_a atom_b))
(not (> atom_a atom_b))
)

)

0 comments on commit 1c5a4a2

Please sign in to comment.