Browse Source

I don't know what I was thinking: always use interpreter in Executive

(for now)
cl-refactor
Paweł Bylica 10 years ago
parent
commit
bcee6e6921
  1. 2
      libethereum/Executive.cpp

2
libethereum/Executive.cpp

@ -137,7 +137,7 @@ bool Executive::create(Address _sender, u256 _endowment, u256 _gasPrice, u256 _g
m_s.m_cache[m_newAddress] = Account(m_s.balance(m_newAddress) + _endowment, Account::ContractConception);
// Execute _init.
m_vm = VMFace::create(VMFace::JIT, _gas).release();
m_vm = VMFace::create(VMFace::Interpreter, _gas).release();
m_ext = new ExtVM(m_s, m_newAddress, _sender, _origin, _endowment, _gasPrice, bytesConstRef(), _init, m_ms);
return _init.empty();
}

Loading…
Cancel
Save