aboutsummaryrefslogtreecommitdiffstats
path: root/createRandomStateTest.cpp
diff options
context:
space:
mode:
authorsubtly <subtly@users.noreply.github.com>2015-03-30 04:17:12 +0800
committersubtly <subtly@users.noreply.github.com>2015-03-30 04:17:12 +0800
commit602274c0ef07d9e816e97f47c6d556e0edd00758 (patch)
tree5a6ef7b011ec56447882bb5dd00c77ca145b8208 /createRandomStateTest.cpp
parentf6aaa7b12f64291a2ef8a723c5a1dd620751d0ac (diff)
parent5e28d981c729a929a37ba761e86a47de08ce9456 (diff)
downloaddexon-solidity-602274c0ef07d9e816e97f47c6d556e0edd00758.tar
dexon-solidity-602274c0ef07d9e816e97f47c6d556e0edd00758.tar.gz
dexon-solidity-602274c0ef07d9e816e97f47c6d556e0edd00758.tar.bz2
dexon-solidity-602274c0ef07d9e816e97f47c6d556e0edd00758.tar.lz
dexon-solidity-602274c0ef07d9e816e97f47c6d556e0edd00758.tar.xz
dexon-solidity-602274c0ef07d9e816e97f47c6d556e0edd00758.tar.zst
dexon-solidity-602274c0ef07d9e816e97f47c6d556e0edd00758.zip
Merge branch 'develop' into reqpeer
Conflicts: libp2p/Network.cpp
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)
{