We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4dc3e2 commit c4ada3fCopy full SHA for c4ada3f
src/mineSweeperGUI.py
@@ -530,9 +530,9 @@ def gameWin(self): # 成功后改脸和状态变量,停时间
530
def checksum_module_ok(self):
531
# 检查校验和模块的签名
532
# 调试的时候不会自动存录像,除非将此处改为return True
533
- # return True
534
- return hashlib.sha256(bytes(metaminesweeper_checksum.get_self_key())).hexdigest() ==\
535
- '590028493bb58a25ffc76e2e2ad490df839a1f449435c35789d3119ca69e5d4f'
+ return True
+ # return hashlib.sha256(bytes(metaminesweeper_checksum.get_self_key())).hexdigest() ==\
+ # '590028493bb58a25ffc76e2e2ad490df839a1f449435c35789d3119ca69e5d4f'
536
537
def save_evf_file(self):
538
# 搜集本局各种信息,存成evf文件
0 commit comments