diff options
author | Gav Wood <i@gavwood.com> | 2014-12-03 03:09:00 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-12-03 03:09:00 +0800 |
commit | 2f5b9151d5d28d1874acce22fe52b6cc0ab2c226 (patch) | |
tree | 9814bd5b18103ce88f223c62edc4a833157781e6 /vm.cpp | |
parent | 8d0a6647401123fcab7b1b5f38a5fd46b94331c2 (diff) | |
parent | fb7c3bb302e5d309b500e2929a565b427de23a8b (diff) | |
download | dexon-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.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |