mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-27 15:01:08 +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…
Reference in New Issue
Block a user