-
Notifications
You must be signed in to change notification settings - Fork 515
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
Attr support for proof restrictions #585
Conversation
Signed-off-by: Ian Costanzo <ian@anon-solutions.ca>
Codecov Report
@@ Coverage Diff @@
## master #585 +/- ##
=======================================
Coverage 96.46% 96.46%
=======================================
Files 247 247
Lines 13166 13167 +1
=======================================
+ Hits 12701 12702 +1
Misses 465 465 |
Signed-off-by: Ian Costanzo <ian@anon-solutions.ca>
Hold off on this until Monday please - I'd like to take a deeper look |
@sklump I took a crack at updating the schema so we could keep the schema validations on the restrictions however I couldn't get it to work. You can see the updated schema code here: |
@@ -206,7 +212,7 @@ class IndyProofReqPredSpecSchema(Schema): | |||
) | |||
p_value = fields.Integer(description="Threshold value", required=True) | |||
restrictions = fields.List( | |||
fields.Nested(IndyProofReqSpecRestrictionsSchema()), | |||
fields.Dict(), # fields.Nested(IndyProofReqSpecRestrictionsSchema()), |
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.
Let me have a crack at it, I am just off vacation and full of hubris
Signed-off-by: Ian Costanzo ian@anon-solutions.ca