diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-09-28 01:21:57 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-09-28 01:21:57 -0700 |
| commit | 7de4e47d5fd15d79316a7e925fe87d0087974613 (patch) | |
| tree | 30e753f9317db3f29ce9cf31a11e975728c1572b /src/miner.cpp | |
| parent | Merge pull request #3027 from cozz/cozz2 (diff) | |
| parent | internal miner: move 2 globals from main to miner (diff) | |
| download | discoin-7de4e47d5fd15d79316a7e925fe87d0087974613.tar.xz discoin-7de4e47d5fd15d79316a7e925fe87d0087974613.zip | |
Merge pull request #3031 from Diapolo/miner
internal miner: move 2 globals from main to miner
Diffstat (limited to 'src/miner.cpp')
| -rw-r--r-- | src/miner.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/miner.cpp b/src/miner.cpp index 5f79fedba..30c600071 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -3,15 +3,11 @@ // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#include "core.h" -#include "wallet.h" #include "miner.h" #include "main.h" - - - - +double dHashesPerSec = 0.0; +int64 nHPSTimerStart = 0; ////////////////////////////////////////////////////////////////////////////// // |