diff options
author | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-10-28 01:59:42 +0800 |
---|---|---|
committer | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-10-28 01:59:42 +0800 |
commit | 1905208649843cbd52d5ff8be5be6c8206755038 (patch) | |
tree | bd0a83f67539fbd9edac78b5d86b984d0e15a35f /vm.h | |
parent | dba99342ba185c264b5b04ca36b9ac7e5ecd0a56 (diff) | |
download | dexon-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.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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; |