Extensive pathway for reporting transaction execution results.

This commit is contained in:
Gav Wood 2015-03-18 12:56:50 +01:00
parent e4bbc56c0b
commit e48fd2ef7e
3 changed files with 3 additions and 3 deletions

View File

@ -87,7 +87,7 @@ bool doStateTest(mValue& _v)
try
{
theState.execute(lastHashes(importer.m_environment.currentBlock.number), tx, &output);
output = theState.execute(lastHashes(importer.m_environment.currentBlock.number), tx).output;
}
catch (Exception const& _e)
{

View File

@ -162,7 +162,7 @@ void doStateTests(json_spirit::mValue& _v)
try
{
theState.execute(test::lastHashes(importer.m_environment.currentBlock.number), tx, &output);
output = theState.execute(test::lastHashes(importer.m_environment.currentBlock.number), tx).output;
}
catch (Exception const& _e)
{

View File

@ -63,7 +63,7 @@ void doStateTests(json_spirit::mValue& v, bool _fillin)
try
{
Listener::ExecTimeGuard guard{i.first};
theState.execute(lastHashes(importer.m_environment.currentBlock.number), tx, &output);
output = theState.execute(lastHashes(importer.m_environment.currentBlock.number), tx).output;
}
catch (Exception const& _e)
{