diff options
author | Gav Wood <i@gavwood.com> | 2015-03-04 18:55:22 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-03-06 19:19:44 +0800 |
commit | d8da0f06f541b1c0a53ef46dd07268d7b3aef614 (patch) | |
tree | dd09dca552a44141800184a3ff1529f22f9ee939 /dagger.cpp | |
parent | 58b82aef3ef32131df0783e04c68d1d46445b98f (diff) | |
download | dexon-solidity-d8da0f06f541b1c0a53ef46dd07268d7b3aef614.tar dexon-solidity-d8da0f06f541b1c0a53ef46dd07268d7b3aef614.tar.gz dexon-solidity-d8da0f06f541b1c0a53ef46dd07268d7b3aef614.tar.bz2 dexon-solidity-d8da0f06f541b1c0a53ef46dd07268d7b3aef614.tar.lz dexon-solidity-d8da0f06f541b1c0a53ef46dd07268d7b3aef614.tar.xz dexon-solidity-d8da0f06f541b1c0a53ef46dd07268d7b3aef614.tar.zst dexon-solidity-d8da0f06f541b1c0a53ef46dd07268d7b3aef614.zip |
New Proof-of-Work.
Diffstat (limited to 'dagger.cpp')
-rw-r--r-- | dagger.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -30,6 +30,7 @@ using namespace dev::eth; int daggerTest() { +#if 0 cnote << "Testing ProofOfWork..."; // Test dagger { @@ -46,6 +47,7 @@ int daggerTest() cout << hex << ProofOfWork().eval((h256)(u256)1, (h256)(u256)1); cout << " " << dec << duration_cast<milliseconds>(steady_clock::now() - s).count() << " ms" << endl; } +#endif return 0; } |