diff --git a/libevm/VM.h b/libevm/VM.h index b0267c051..8fdd3de92 100644 --- a/libevm/VM.h +++ b/libevm/VM.h @@ -246,7 +246,7 @@ template dev::bytesConstRef dev::eth::VM::go(Ext& _ext, OnOpFunc con { require(2); auto expon = m_stack[m_stack.size() - 2]; - runGas = c_expGas + c_extByteGas * (32 - (h256(expon).firstBitSet() / 8)); + runGas = c_expGas + c_expByteGas * (32 - (h256(expon).firstBitSet() / 8)); break; }