mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-21 20:26:41 +00:00
Better assert condition
This commit is contained in:
parent
16de530331
commit
dcb739e445
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ namespace jit
|
||||||
|
|
||||||
bytesConstRef VM::go(ExtVMFace& _ext, OnOpFunc const& _onOp, uint64_t _steps)
|
bytesConstRef VM::go(ExtVMFace& _ext, OnOpFunc const& _onOp, uint64_t _steps)
|
||||||
{
|
{
|
||||||
assert(_onOp == nullptr); // Parameter ignored
|
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);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue