diff options
| author | David Joel Schwartz <[email protected]> | 2011-08-06 05:15:00 -0800 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2011-10-04 00:04:43 -0400 |
| commit | 514b18722aa2bd0c591428f91b4ba167013ecbc1 (patch) | |
| tree | 6bc20804c545fdb1a8c11e99015e8d06025f96dd /src | |
| parent | Merge pull request #527 from TheBlueMatt/gitian-downloader (diff) | |
| download | discoin-514b18722aa2bd0c591428f91b4ba167013ecbc1.tar.xz discoin-514b18722aa2bd0c591428f91b4ba167013ecbc1.zip | |
Remove 2 second sleep from CheckWork
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 6a3bacc78..bcdd80148 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2894,7 +2894,6 @@ bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey) return error("BitcoinMiner : ProcessBlock, block not accepted"); } - Sleep(2000); return true; } |