Ignore opOp callback silently

This commit is contained in:
Paweł Bylica 2014-10-28 12:28:23 +01:00
parent c7ba567f9a
commit 5a923d6356

View file

@ -13,9 +13,8 @@ namespace eth
namespace jit namespace jit
{ {
bytesConstRef VM::go(ExtVMFace& _ext, OnOpFunc const& _onOp, uint64_t _steps) bytesConstRef VM::go(ExtVMFace& _ext, OnOpFunc const&, uint64_t)
{ {
assert(!_onOp); // Parameter ignored
assert(_steps == (uint64_t)-1); // Parameter ignored assert(_steps == (uint64_t)-1); // Parameter ignored
auto module = Compiler().compile(_ext.code); auto module = Compiler().compile(_ext.code);