aboutsummaryrefslogtreecommitdiffstats
path: root/vm.h
diff options
context:
space:
mode:
authorChristoph Jentzsch <jentzsch.software@gmail.com>2014-10-28 01:59:42 +0800
committerChristoph Jentzsch <jentzsch.software@gmail.com>2014-10-28 01:59:42 +0800
commit1905208649843cbd52d5ff8be5be6c8206755038 (patch)
treebd0a83f67539fbd9edac78b5d86b984d0e15a35f /vm.h
parentdba99342ba185c264b5b04ca36b9ac7e5ecd0a56 (diff)
downloaddexon-solidity-1905208649843cbd52d5ff8be5be6c8206755038.tar.gz
dexon-solidity-1905208649843cbd52d5ff8be5be6c8206755038.tar.zst
dexon-solidity-1905208649843cbd52d5ff8be5be6c8206755038.zip
Add VMTRACE to user defined vm test
Conflicts: test/vm.cpp
Diffstat (limited to 'vm.h')
-rw-r--r--vm.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/vm.h b/vm.h
index 58ff58cd..bf44c4b4 100644
--- a/vm.h
+++ b/vm.h
@@ -80,6 +80,9 @@ public:
json_spirit::mArray exportCallCreates();
void importCallCreates(json_spirit::mArray& _callcreates);
+ static eth::OnOpFunc simpleTrace();
+ FakeState state() const { return m_s; }
+
std::map<Address, std::tuple<u256, u256, std::map<u256, u256>, bytes>> addresses;
eth::Transactions callcreates;
bytes thisTxData;