aboutsummaryrefslogtreecommitdiff
path: root/src/miner.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-09-25 15:45:46 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-09-25 15:48:11 +0200
commit8d750f1d21d8578794a765415fe9d0e9e74d2852 (patch)
tree7d3aa58111f2deba8f6de49234fd68892a5bb06c /src/miner.cpp
parentd14b86730b22db92df3c1cec89bc43d20a12a898 (diff)
downloadbitcoin-8d750f1d21d8578794a765415fe9d0e9e74d2852.tar.xz
internal miner: move 2 globals from main to miner
- moves 2 global variables from main.cpp/h to miner.cpp/h - also removes 2 unneded includes in miner.cpp, that come from miner.h already
Diffstat (limited to 'src/miner.cpp')
-rw-r--r--src/miner.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/miner.cpp b/src/miner.cpp
index 5f79fedba2..30c600071f 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;
//////////////////////////////////////////////////////////////////////////////
//