aboutsummaryrefslogtreecommitdiffstats
path: root/state.cpp
diff options
context:
space:
mode:
authorPaweł Bylica <pawel.bylica@imapp.pl>2015-03-31 17:44:00 +0800
committerPaweł Bylica <pawel.bylica@imapp.pl>2015-03-31 17:44:00 +0800
commit7fb437d0da0819c034b659f7a8ce4f35dd2a8b69 (patch)
treef2d75a61bc330b1c897d897e65251e9a0a4a9f5f /state.cpp
parentf07089ffa390c02a81c1dd057329cd34797d5eec (diff)
parent8860f8d4c3590423f486559b11bf6c2db9bbab7a (diff)
downloaddexon-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.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/state.cpp b/state.cpp
index 8168693b..e4bf06bd 100644
--- a/state.cpp
+++ b/state.cpp
@@ -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)
{