aboutsummaryrefslogtreecommitdiffstats
path: root/vm.cpp
diff options
context:
space:
mode:
authorCJentzsch <jentzsch.software@gmail.com>2014-12-02 05:44:31 +0800
committerCJentzsch <jentzsch.software@gmail.com>2014-12-02 05:44:31 +0800
commitfb7c3bb302e5d309b500e2929a565b427de23a8b (patch)
treecff838cd6897aa27eae9aa6247bb8f738eb9b967 /vm.cpp
parent057553a0a08f473c3580782cbba3bc18b71966fa (diff)
downloaddexon-solidity-fb7c3bb302e5d309b500e2929a565b427de23a8b.tar.gz
dexon-solidity-fb7c3bb302e5d309b500e2929a565b427de23a8b.tar.zst
dexon-solidity-fb7c3bb302e5d309b500e2929a565b427de23a8b.zip
style
Conflicts: libevm/VM.h
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 0d61bf6b..8c9810a2 100644
--- a/vm.cpp
+++ b/vm.cpp
@@ -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);