ethereum / hevm

symbolic EVM evaluator
https://hevm.dev
GNU Affero General Public License v3.0
225 stars 46 forks source link

Fixing out-of-heap error due to large memory copy #445

Closed msooseth closed 7 months ago

msooseth commented 7 months ago

Description

This issue is related to #444. I am fixing it by returning IllegalOverflow, which is what we already do, although we only check $2^{64}$, not 2^{28}$. However, it's mostly the same thing -- way too large of a number.

Checklist

msooseth commented 7 months ago

Thanks for the review!