Skip to content

Commit

Permalink
EVMC: Remove "unreachable" assert
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Jan 31, 2018
1 parent 619a643 commit 44b8e33
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion libevm/EVMC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ owning_bytes_ref EVMC::exec(u256& io_gas, ExtVMFace& _ext, const OnOpFunc& _onOp
(void)int64max;
assert(io_gas <= int64max);
assert(_ext.envInfo().number() <= int64max);
assert(_ext.envInfo().timestamp() <= int64max);
assert(_ext.envInfo().gasLimit() <= int64max);
assert(_ext.depth <= std::numeric_limits<int32_t>::max());

Expand Down

0 comments on commit 44b8e33

Please sign in to comment.