diff options
author | Gav Wood <i@gavwood.com> | 2015-04-14 00:12:05 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-04-14 18:56:58 +0800 |
commit | efdd3790a0405654933f456751230254cef95151 (patch) | |
tree | 49858d780698755113eae1aa88dca3e423ceed90 /TestHelper.h | |
parent | d0efe9333fc88bae5ab82ef0435d99d9be4e21d4 (diff) | |
download | dexon-solidity-efdd3790a0405654933f456751230254cef95151.tar dexon-solidity-efdd3790a0405654933f456751230254cef95151.tar.gz dexon-solidity-efdd3790a0405654933f456751230254cef95151.tar.bz2 dexon-solidity-efdd3790a0405654933f456751230254cef95151.tar.lz dexon-solidity-efdd3790a0405654933f456751230254cef95151.tar.xz dexon-solidity-efdd3790a0405654933f456751230254cef95151.tar.zst dexon-solidity-efdd3790a0405654933f456751230254cef95151.zip |
Various fixes for mining.
Diffstat (limited to 'TestHelper.h')
-rw-r--r-- | TestHelper.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/TestHelper.h b/TestHelper.h index 04ca95be..92745bc3 100644 --- a/TestHelper.h +++ b/TestHelper.h @@ -36,9 +36,12 @@ namespace eth { class Client; +class State; void mine(Client& c, int numBlocks); void connectClients(Client& c1, Client& c2); +void mine(State& _s, BlockChain const& _bc); +void mine(BlockInfo& _bi); } @@ -225,7 +228,5 @@ public: }; }; - - } } |