Skip to content

Commit

Permalink
fix: updated datetime value format
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias Brunkow Moser committed Jun 21, 2024
1 parent 31e16bb commit 89441db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dpp-verification/simple-wallet/utilities/cryptool.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def issueJwsVerifiableCredential(walletUrl, methodId, issuerId, expirationTimede
"type": "JsonWebSignature2020",
"proofPurpose": "assertionMethod",
"verificationMethod": f"{issuerDid}#{methodId}",
"created": issuance_date.isoformat() + "Z",
"created": issuance_date.strftime('%Y-%m-%dT%H:%M:%SZ'),
"jws": jws
}

Expand Down

0 comments on commit 89441db

Please sign in to comment.