-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add support to select multiple connections while sending proof request #1086
base: develop-dco-fixed
Are you sure you want to change the base?
feat: Add support to select multiple connections while sending proof request #1086
Conversation
Signed-off-by: pranalidhanavade <[email protected]>
Signed-off-by: pranalidhanavade <[email protected]>
Signed-off-by: pranalidhanavade <[email protected]>
Signed-off-by: pranalidhanavade <[email protected]>
@@ -627,16 +648,15 @@ export class VerificationService { | |||
p_value: parseInt(attribute.value), | |||
restrictions: [ | |||
{ | |||
cred_def_id: proofRequestpayload.attributes[index].credDefId ? proofRequestpayload.attributes[index].credDefId : undefined, | |||
schema_id: proofRequestpayload.attributes[index].schemaId | |||
cred_def_id: proofRequestpayload?.proofFormats?.indy?.attributes[index].credDefId ? proofRequestpayload?.proofFormats?.indy?.attributes[index].credDefId : undefined, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in case the attributes[index].credDefId: undefined
, does the proofrequest allow any credDef or does the credDef only needs to be undefined
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No it doesn't allow credDef in this case attributes[index].credDefId: undefined
.
Signed-off-by: pranalidhanavade <[email protected]>
Signed-off-by: pranalidhanavade <[email protected]>
Quality Gate passedIssues Measures |
What