Skip to content

Commit

Permalink
Merge pull request #397 from ethereum/update-keccak-min
Browse files Browse the repository at this point in the history
Keccak: update min value assumption to match `readStorage`
  • Loading branch information
d-xo authored Oct 2, 2023
2 parents 4e4bc8d + 2107af7 commit bd809d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EVM/Keccak.hs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ combine lst = combine' lst []
combine' xs (xcomb:acc)

minProp :: Expr EWord -> Prop
minProp k@(Keccak _) = PGT k (Lit 50)
minProp k@(Keccak _) = PGT k (Lit 256)
minProp _ = internalError "expected keccak expression"

injProp :: (Expr EWord, Expr EWord) -> Prop
Expand Down

0 comments on commit bd809d1

Please sign in to comment.