Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix default value for
hash_collision
in EVMState
`false` is a `Bool`. The intended default value. `False` is the `Prop` representing a contradiction, not the intended default value of `hash_collision`, but since `False` is a decidable proposition, Lean automatically treats this as `decide False` which is a `Bool`. Although we can actually prove `false = False` in Lean, using `false` directly is preferable.
- Loading branch information