We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00ab69b commit afaf1acCopy full SHA for afaf1ac
aries_cloudagent/protocols/issue_credential/v2_0/formats/ld_proof/handler.py
@@ -445,7 +445,7 @@ async def receive_credential(
445
# TODO: if created wasn't present in the detail options, should we verify
446
# it is ~now (e.g. some time in the past + future)?
447
# Check if created property matches
448
- if vc.proof.created != detail.options.created:
+ if detail.options.created and vc.proof.created != detail.options.created:
449
raise V20CredFormatError(
450
"Received credential proof.created does not"
451
" match options.created from credential request"
0 commit comments