Browse Source

fix Create return value for exceptional haltings

cl-refactor
CJentzsch 10 years ago
parent
commit
aa43d7261d
  1. 3
      libethereum/Executive.cpp

3
libethereum/Executive.cpp

@ -246,6 +246,9 @@ bool Executive::go(OnOpFunc const& _onOp)
m_endGas = 0;
m_excepted = toTransactionException(_e);
m_ext->revert();
if (m_isCreation)
m_newAddress = Address();
}
catch (Exception const& _e)
{

Loading…
Cancel
Save