-
Notifications
You must be signed in to change notification settings - Fork 54
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
follow-up(miden-proving-service): address missing comments #1078
follow-up(miden-proving-service): address missing comments #1078
Conversation
In the original PR, there was this comment:
This is the answer:
cc @bobbinth |
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.
Looks good! Thank you! I left a couple of small comments inline. After these, we are good to merge.
bin/proving-service/README.md
Outdated
|
||
## License | ||
|
||
This project is [MIT licensed](../LICENSE). |
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 think this would need to be ../../LICENSE
(since we are two levels deep from the root).
.as_ref() | ||
.ok_or_else(|| TransactionProverError::other("client should be connected"))? | ||
.clone(); |
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.
Cloning the client is pretty light-weight, right?
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.
Yes, it is composed only for the tonic client which isn't "big".
@bobbinth I think this is ready to merge, but I saw that you moved it from the milestone. Should I merge it or wait until the new release is out? |
Yes, let's merge. I mistakenly assigned a milestone to a PR (we usually assign milestones only to issues). |
This PR aims to address the comments of this review.
I tried to maintain commits as we do in reviews, so the reviewer can keep track of which comment I'm addressing in each one.
It:
testing
feature from theproving-service
crate.miden-remote-provers
tomiden-proving-service-client
.