mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-21 21:27:36 +00:00
Update proof_of_work.py
This commit is contained in:
parent
6ee3d9e1e6
commit
1e3b382c5d
@ -28,6 +28,5 @@ def proof_of_work(difficulty: int) -> int:
|
|||||||
hash_result = hashlib.sha256(f"{nonce}".encode()).hexdigest()
|
hash_result = hashlib.sha256(f"{nonce}".encode()).hexdigest()
|
||||||
if hash_result.startswith(prefix):
|
if hash_result.startswith(prefix):
|
||||||
end = time.time() # Timing ends
|
end = time.time() # Timing ends
|
||||||
print(f"Time taken: {end - start:.2f}s") # Print time taken
|
|
||||||
return nonce
|
return nonce
|
||||||
nonce += 1
|
nonce += 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user