aboutsummaryrefslogtreecommitdiffstats
path: root/createRandomStateTest.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 /createRandomStateTest.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 'createRandomStateTest.cpp')
-rw-r--r--createRandomStateTest.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/createRandomStateTest.cpp b/createRandomStateTest.cpp
index f422d171..5758598b 100644
--- a/createRandomStateTest.cpp
+++ b/createRandomStateTest.cpp
@@ -183,12 +183,11 @@ void doStateTests(json_spirit::mValue& _v)
test::ImportTest importer(o, true);
eth::State theState = importer.m_statePre;
- bytes tx = importer.m_transaction.rlp();
bytes output;
try
{
- output = theState.execute(test::lastHashes(importer.m_environment.currentBlock.number), tx).output;
+ output = theState.execute(test::lastHashes(importer.m_environment.currentBlock.number), importer.m_transaction).output;
}
catch (Exception const& _e)
{