This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Wallet query multi-descriptor fix (#3544)
If we have two input descriptors with two credentials and one descriptor is satisfied with two credentials then we have failure depending on the order of processing. Closes #3543 Signed-off-by: Sandra Vrtikapa <[email protected]>
- Loading branch information
Showing
4 changed files
with
191 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
pkg/internal/ldtestutil/contexts/third_party/w3c-ccg.github.io/revocation-list-2021.jsonld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"@context": { | ||
"@protected": true, | ||
"StatusList2021Credential": { | ||
"@id": "https://w3id.org/vc/status-list#StatusList2021Credential", | ||
"@context": { | ||
"@protected": true, | ||
"id": "@id", | ||
"type": "@type", | ||
"description": "http://schema.org/description", | ||
"name": "http://schema.org/name" | ||
} | ||
}, | ||
"RevocationList2021": { | ||
"@id": "https://w3id.org/vc/status-list#RevocationList2021", | ||
"@context": { | ||
"@protected": true, | ||
"id": "@id", | ||
"type": "@type", | ||
"encodedList": "https://w3id.org/vc/status-list#encodedList" | ||
} | ||
}, | ||
"RevocationList2021Status": { | ||
"@id": "https://w3id.org/vc/status-list#RevocationList2021Status", | ||
"@context": { | ||
"@protected": true, | ||
"id": "@id", | ||
"type": "@type", | ||
"statusListCredential": { | ||
"@id": "https://w3id.org/vc/status-list#statusListCredential", | ||
"@type": "@id" | ||
}, | ||
"statusListIndex": "https://w3id.org/vc/status-list#statusListIndex" | ||
} | ||
}, | ||
"SuspensionList2021Status": { | ||
"@id": "https://w3id.org/vc/status-list#SuspensionList2021Status", | ||
"@context": { | ||
"@protected": true, | ||
"id": "@id", | ||
"type": "@type", | ||
"statusListCredential": { | ||
"@id": "https://w3id.org/vc/status-list#statusListCredential", | ||
"@type": "@id" | ||
}, | ||
"statusListIndex": "https://w3id.org/vc/status-list#statusListIndex" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters