Rename Executive::setResultRef -> collectResult.

This commit is contained in:
Paweł Bylica 2015-05-28 11:56:28 +02:00
parent ecd5108afc
commit 77dd832403

View File

@ -136,7 +136,7 @@ protected:
m_state.addBalance(m_sender, _value); // just in case
eth::Executive executive(m_state, eth::LastHashes(), 0);
eth::ExecutionResult res;
executive.setResultRef(res);
executive.collectResult(res);
eth::Transaction t = _isCreation ? eth::Transaction(_value, m_gasPrice, m_gas, _data, 0, KeyPair::create().sec())
: eth::Transaction(_value, m_gasPrice, m_gas, m_contractAddress, _data, 0, KeyPair::create().sec());
bytes transactionRLP = t.rlp();