Husnain
commited on
⚡ [Enhance] Replace Crypto with hashlib
Browse files- networks/proof_worker.py +1 -1
networks/proof_worker.py
CHANGED
|
@@ -20,7 +20,7 @@ class ProofWorker:
|
|
| 20 |
tz = timezone(timedelta(hours=8))
|
| 21 |
now = now.astimezone(tz)
|
| 22 |
time_format = "%a %b %d %Y %H:%M:%S"
|
| 23 |
-
return now.strftime(time_format) + " GMT+
|
| 24 |
|
| 25 |
def get_config(self):
|
| 26 |
cores = [8, 12, 16, 24]
|
|
|
|
| 20 |
tz = timezone(timedelta(hours=8))
|
| 21 |
now = now.astimezone(tz)
|
| 22 |
time_format = "%a %b %d %Y %H:%M:%S"
|
| 23 |
+
return now.strftime(time_format) + " GMT+0800 (中国标准时间)"
|
| 24 |
|
| 25 |
def get_config(self):
|
| 26 |
cores = [8, 12, 16, 24]
|