diff options
| author | Philip Kaufmann <[email protected]> | 2013-09-25 15:45:46 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2013-09-25 15:48:11 +0200 |
| commit | 8d750f1d21d8578794a765415fe9d0e9e74d2852 (patch) | |
| tree | 7d3aa58111f2deba8f6de49234fd68892a5bb06c /src/main.cpp | |
| parent | Merge pull request #3026 from sipa/checkunspend (diff) | |
| download | discoin-8d750f1d21d8578794a765415fe9d0e9e74d2852.tar.xz discoin-8d750f1d21d8578794a765415fe9d0e9e74d2852.zip | |
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/main.cpp')
| -rw-r--r-- | src/main.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index f44a58d59..dc690111e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -67,9 +67,6 @@ CScript COINBASE_FLAGS; const string strMessageMagic = "Bitcoin Signed Message:\n"; -double dHashesPerSec = 0.0; -int64 nHPSTimerStart = 0; - // Settings int64 nTransactionFee = 0; |