mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-27 23:11:09 +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)
|
>>> isinstance(result, int)
|
||||||
True
|
True
|
||||||
"""
|
"""
|
||||||
prefix = "0" * difficulty
|
prefix = '0' * difficulty
|
||||||
nonce = 0
|
nonce = 0
|
||||||
start = time.time()
|
start = time.time()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user