mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-15 18:27:36 +00:00
Updated proof_of_work.py
This commit is contained in:
parent
bd89e9705f
commit
5a7b2ffbba
@ -20,7 +20,7 @@ def proof_of_work(difficulty: int) -> int:
|
||||
>>> isinstance(result, int)
|
||||
True
|
||||
"""
|
||||
prefix = "0" * difficulty
|
||||
prefix = '0' * difficulty
|
||||
nonce = 0
|
||||
start = time.time()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user