-
Notifications
You must be signed in to change notification settings - Fork 7
feat(agent): changes required for issue credential and presentation proof to work #84
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
Conversation
This also adds a test suit to make sure crypto suit is on pair with 1.4
…roof to work fixes ATL-3094
de78fcf
to
87fbb62
Compare
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.
LGTM
} | ||
|
||
// TODO: This function is not the most appropriate but will do the job now to change later. | ||
private func findValue(forKey key: String, in json: Any) -> String? { |
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.
Shouldn't this chanege from private
to fileprivate
private func findValue(forKey key: String, in json: Any) -> String? { | |
fileprivate func findValue(forKey key: String, in json: Any) -> String? { |
} | ||
|
||
// TODO: This function is not the most appropriate but will do the job now to change later. | ||
private func findValue(forKey key: String, in json: Any) -> String? { |
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.
I understand the need for duplication for this function, but shouldn't this change from private
to fileprivate
private func findValue(forKey key: String, in json: Any) -> String? { | |
fileprivate func findValue(forKey key: String, in json: Any) -> String? { |
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.
Not really fileprivate
is more for when you got private code inside of class and you want to access it lets say in an extension
of that class in the same file. With private
that would not be possible.
This is a func
outside of any class/struct fileprivate
would not add anything more. ;)
No description provided.