Update proof_of_work.py

This commit is contained in:
DIVYASREE S 2024-10-10 22:30:29 +05:30 committed by GitHub
parent 1e3b382c5d
commit 38904a32f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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() # Timing starts start = time.time() # Timing starts