aboutsummaryrefslogtreecommitdiffstats
path: root/vm.cpp
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-12-03 03:09:00 +0800
committerGav Wood <i@gavwood.com>2014-12-03 03:09:00 +0800
commit2f5b9151d5d28d1874acce22fe52b6cc0ab2c226 (patch)
tree9814bd5b18103ce88f223c62edc4a833157781e6 /vm.cpp
parent8d0a6647401123fcab7b1b5f38a5fd46b94331c2 (diff)
parentfb7c3bb302e5d309b500e2929a565b427de23a8b (diff)
downloaddexon-solidity-2f5b9151d5d28d1874acce22fe52b6cc0ab2c226.tar
dexon-solidity-2f5b9151d5d28d1874acce22fe52b6cc0ab2c226.tar.gz
dexon-solidity-2f5b9151d5d28d1874acce22fe52b6cc0ab2c226.tar.bz2
dexon-solidity-2f5b9151d5d28d1874acce22fe52b6cc0ab2c226.tar.lz
dexon-solidity-2f5b9151d5d28d1874acce22fe52b6cc0ab2c226.tar.xz
dexon-solidity-2f5b9151d5d28d1874acce22fe52b6cc0ab2c226.tar.zst
dexon-solidity-2f5b9151d5d28d1874acce22fe52b6cc0ab2c226.zip
Merge branch 'develop' of github.com:ethereum/cpp-ethereum into develop
Conflicts: test/vm.cpp
Diffstat (limited to 'vm.cpp')
-rw-r--r--vm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm.cpp b/vm.cpp
index 1286df42..d7bc0612 100644
--- a/vm.cpp
+++ b/vm.cpp
@@ -384,7 +384,7 @@ void doVMTests(json_spirit::mValue& v, bool _fillin)
o["callcreates"] = fev.exportCallCreates();
o["out"] = "0x" + toHex(output);
fev.push(o, "gas", gas);
- o["logs"] = mValue(fev.exportLog());
+ o["logs"] = mValue(exportLog(fev.sub.logs));
}
}
else
@@ -402,7 +402,7 @@ void doVMTests(json_spirit::mValue& v, bool _fillin)
dev::test::FakeExtVM test;
test.importState(o["post"].get_obj());
test.importCallCreates(o["callcreates"].get_array());
- test.importLog(o["logs"].get_obj());
+ test.sub.logs = importLog(o["logs"].get_obj());
checkOutput(output, o);