diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dc126d31..990cf688a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Keccak concretization is now done only after all simplifications are performed. This helps with simplification pre-concretization - Added an IllegalOverflow error in case the system tries to allocate a large amount of memory during abstract gas execution but concrete running. In these cases, the interpreter can out-of-heap - as the only check is that the size allocated $<2^{64}$, but that is too large to fit in memory. Now, - we check more stringengly, and still return an IllegalOverflow + as the only check is that the size allocated is less than $2**{64}$, but that is too large to fit in memory. Now, + we check more stringently, and still return an IllegalOverflow ## Added