Browse Source

reverted Executive.cpp

cl-refactor
arkpar 10 years ago
parent
commit
622a358d1d
  1. 2
      libethereum/Executive.cpp

2
libethereum/Executive.cpp

@ -68,7 +68,7 @@ bool Executive::setup(bytesConstRef _rlp)
if (m_t.gas() < gasCost)
{
clog << "Not enough gas to pay for the transaction: Require >" << gasCost << " Got" << m_t.gas();
clog(StateDetail) << "Not enough gas to pay for the transaction: Require >" << gasCost << " Got" << m_t.gas();
BOOST_THROW_EXCEPTION(OutOfGas() << RequirementError((bigint)gasCost, (bigint)m_t.gas()));
}

Loading…
Cancel
Save