diff options
author | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-03-31 17:44:00 +0800 |
---|---|---|
committer | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-03-31 17:44:00 +0800 |
commit | 7fb437d0da0819c034b659f7a8ce4f35dd2a8b69 (patch) | |
tree | f2d75a61bc330b1c897d897e65251e9a0a4a9f5f /state.cpp | |
parent | f07089ffa390c02a81c1dd057329cd34797d5eec (diff) | |
parent | 8860f8d4c3590423f486559b11bf6c2db9bbab7a (diff) | |
download | dexon-solidity-7fb437d0da0819c034b659f7a8ce4f35dd2a8b69.tar dexon-solidity-7fb437d0da0819c034b659f7a8ce4f35dd2a8b69.tar.gz dexon-solidity-7fb437d0da0819c034b659f7a8ce4f35dd2a8b69.tar.bz2 dexon-solidity-7fb437d0da0819c034b659f7a8ce4f35dd2a8b69.tar.lz dexon-solidity-7fb437d0da0819c034b659f7a8ce4f35dd2a8b69.tar.xz dexon-solidity-7fb437d0da0819c034b659f7a8ce4f35dd2a8b69.tar.zst dexon-solidity-7fb437d0da0819c034b659f7a8ce4f35dd2a8b69.zip |
Merge remote-tracking branch 'upstream/develop' into evmjit
Diffstat (limited to 'state.cpp')
-rw-r--r-- | state.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -53,13 +53,12 @@ void doStateTests(json_spirit::mValue& v, bool _fillin) ImportTest importer(o, _fillin); State theState = importer.m_statePre; - bytes tx = importer.m_transaction.rlp(); bytes output; try { Listener::ExecTimeGuard guard{i.first}; - output = theState.execute(lastHashes(importer.m_environment.currentBlock.number), tx).output; + output = theState.execute(lastHashes(importer.m_environment.currentBlock.number), importer.m_transaction).output; } catch (Exception const& _e) { |