Skip to content

Commit 91b6952

Browse files
committed
remove local changed pushed in error
Signed-off-by: timbl-ont <[email protected]>
1 parent 2632f97 commit 91b6952

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

oid4vc/oid4vc/routes.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1786,16 +1786,15 @@ async def create_did_jwk(request: web.Request):
17861786
did = "did:jwk:" + bytes_to_b64(
17871787
json.dumps(jwk).encode(), urlsafe=True, pad=False
17881788
)
1789+
17891790
did_info = DIDInfo(
17901791
did=did,
17911792
verkey=key.get_jwk_thumbprint(),
17921793
metadata={},
17931794
method=DID_JWK,
1794-
key_type=key_type_instance,
1795+
key_type=P256,
17951796
)
17961797

1797-
LOGGER.debug(f"Storing DID: {did_info}")
1798-
17991798
await wallet.store_did(did_info)
18001799

18011800
return web.json_response({"did": did})

0 commit comments

Comments
 (0)