You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Added
Added support for fuel metering in the wasmi CLI. (#679)
Users can now specify an amount of fuel via --fuel N to commit for the execution.
Upon success the wasmi CLI will display the total amount of consumed and remaining fuel.
Fixed
Fixed a bug that wasmi CLI did not preserve the WASI exit status. (#677)
Defer charging fuel for costly bulk memory and bulk table operations. (#676)
Note that the check to assert that enough fuel is provided for these costly
operation is still happening before the actual computation and only the charging
is deferred to after a successful run. The reason behind this is that all the affected
operations fail fast and therefore should not cost lots of fuel in case of failure.