diff options
author | Gav Wood <i@gavwood.com> | 2014-01-24 01:22:58 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-01-24 01:22:58 +0800 |
commit | 3dbed499c33ed22b39735ecfc5da4a0cc4eaa752 (patch) | |
tree | 83509d72a4e72180ab75899e872206c341b4eefe /state.cpp | |
parent | 7c9a1238b76d4dd9180a198e243750a35f732a32 (diff) | |
download | dexon-solidity-3dbed499c33ed22b39735ecfc5da4a0cc4eaa752.tar dexon-solidity-3dbed499c33ed22b39735ecfc5da4a0cc4eaa752.tar.gz dexon-solidity-3dbed499c33ed22b39735ecfc5da4a0cc4eaa752.tar.bz2 dexon-solidity-3dbed499c33ed22b39735ecfc5da4a0cc4eaa752.tar.lz dexon-solidity-3dbed499c33ed22b39735ecfc5da4a0cc4eaa752.tar.xz dexon-solidity-3dbed499c33ed22b39735ecfc5da4a0cc4eaa752.tar.zst dexon-solidity-3dbed499c33ed22b39735ecfc5da4a0cc4eaa752.zip |
Basic client.
Diffstat (limited to 'state.cpp')
-rw-r--r-- | state.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,7 +47,7 @@ int stateTest() // Mine to get some ether! s.commitToMine(bc); - while (s.mine(100).completed()) {} + while (s.mine(100).completed) {} bc.attemptImport(s.blockData(), stateDB); cout << bc; @@ -74,7 +74,7 @@ int stateTest() // Mine to get some ether and set in stone. s.commitToMine(bc); - while (s.mine(100).completed()) {} + while (s.mine(100).completed) {} bc.attemptImport(s.blockData(), stateDB); cout << bc; |