From 74b94e757198786b586aded87cc81e7213c6cfeb Mon Sep 17 00:00:00 2001 From: Arceliar Date: Thu, 30 May 2013 17:41:08 +0200 Subject: [PATCH] Removed extraneous import. --- src/proofofwork.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proofofwork.py b/src/proofofwork.py index d8140707..cb20e667 100644 --- a/src/proofofwork.py +++ b/src/proofofwork.py @@ -23,7 +23,7 @@ def _pool_worker(nonce, initialHash, target, pool_size): return [trialValue, nonce] def run(target, initialHash): - from multiprocessing import Pool, cpu_count, Value + from multiprocessing import Pool, cpu_count import time try: pool_size = cpu_count()