diff options
author | CJentzsch <jentzsch.software@gmail.com> | 2014-12-02 05:44:31 +0800 |
---|---|---|
committer | CJentzsch <jentzsch.software@gmail.com> | 2014-12-02 05:44:31 +0800 |
commit | fb7c3bb302e5d309b500e2929a565b427de23a8b (patch) | |
tree | cff838cd6897aa27eae9aa6247bb8f738eb9b967 /vm.cpp | |
parent | 057553a0a08f473c3580782cbba3bc18b71966fa (diff) | |
download | dexon-solidity-fb7c3bb302e5d309b500e2929a565b427de23a8b.tar dexon-solidity-fb7c3bb302e5d309b500e2929a565b427de23a8b.tar.gz dexon-solidity-fb7c3bb302e5d309b500e2929a565b427de23a8b.tar.bz2 dexon-solidity-fb7c3bb302e5d309b500e2929a565b427de23a8b.tar.lz dexon-solidity-fb7c3bb302e5d309b500e2929a565b427de23a8b.tar.xz dexon-solidity-fb7c3bb302e5d309b500e2929a565b427de23a8b.tar.zst dexon-solidity-fb7c3bb302e5d309b500e2929a565b427de23a8b.zip |
style
Conflicts:
libevm/VM.h
Diffstat (limited to 'vm.cpp')
-rw-r--r-- | vm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -349,7 +349,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(exportLog(fev.sub.logs)); + o["logs"] = mValue(exportLog(fev.sub.logs)); } } else @@ -367,7 +367,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.sub.logs = importLog(o["logs"].get_obj()); + test.sub.logs = importLog(o["logs"].get_obj()); checkOutput(output, o); |