diff options
author | Gav Wood <i@gavwood.com> | 2014-02-18 05:07:09 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-02-18 05:07:09 +0800 |
commit | 815cb1392bd34158f9d710b7c34465fe6caa5454 (patch) | |
tree | 54edf70945c146b54a6c13aa00868ff0882fb63f /main.cpp | |
parent | ec71a3b4e4b3b3719c3d56c0c43892d79c0b0b39 (diff) | |
download | dexon-solidity-815cb1392bd34158f9d710b7c34465fe6caa5454.tar.gz dexon-solidity-815cb1392bd34158f9d710b7c34465fe6caa5454.tar.zst dexon-solidity-815cb1392bd34158f9d710b7c34465fe6caa5454.zip |
Fixes for contract address states.
Minor fix for uncle rewards.
Assembler for EC-1 assembly.
Not-quite Test code for the VM.
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -27,6 +27,7 @@ int rlpTest(); int daggerTest(); int cryptoTest(); int stateTest(); +int vmTest(); int hexPrefixTest(); int peerTest(int argc, char** argv); @@ -46,6 +47,7 @@ int main(int argc, char** argv) trieTest(); daggerTest(); cryptoTest(); + vmTest(); // stateTest(); // peerTest(argc, argv); return 0; |