Fix bug, sign work based signing, not verification

This commit is contained in:
Alan Rominger 2022-12-06 16:21:17 -05:00
parent adbcb5c5e4
commit f88b993b18
No known key found for this signature in database
GPG Key ID: C2D7EAAA12B63559

View File

@ -63,7 +63,7 @@ def read_receptor_config():
def work_signing_enabled(config_data):
for section in config_data:
if 'work-verification' in section:
if 'work-signing' in section:
return True
return False