aboutsummaryrefslogtreecommitdiffstats
path: root/vm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vm.cpp')
-rw-r--r--vm.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/vm.cpp b/vm.cpp
index 8344c0c5..8c451abd 100644
--- a/vm.cpp
+++ b/vm.cpp
@@ -375,7 +375,7 @@ mArray FakeExtVM::exportCallCreates()
for (Transaction const& tx: callcreates)
{
mObject o;
- o["destination"] = tx.type() == Transaction::ContractCreation ? "" : toString(tx.receiveAddress());
+ o["destination"] = tx.isCreation() ? "" : toString(tx.receiveAddress());
push(o, "gasLimit", tx.gas());
push(o, "value", tx.value());
o["data"] = "0x" + toHex(tx.data());
@@ -683,7 +683,7 @@ void executeTests(const string& _name)
else
testPath = ptestPath;
- testPath += "/vmtests";
+ testPath += "/VMTests";
#ifdef FILL_TESTS
try
@@ -770,11 +770,6 @@ BOOST_AUTO_TEST_CASE(vmPushDupSwapTest)
dev::test::executeTests("vmPushDupSwapTest");
}
-BOOST_AUTO_TEST_CASE(vmSystemOperationsTest)
-{
- dev::test::executeTests("vmSystemOperationsTest");
-}
-
BOOST_AUTO_TEST_CASE(userDefinedFile)
{