-
Notifications
You must be signed in to change notification settings - Fork 48
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 remote block prover as optional #719
Conversation
7b5d726
to
2d25220
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.
Code looks good to me thanks.
99be9e4
to
c0e0b04
Compare
baf3f44
to
3fdeddb
Compare
docs: add PR number to Changelog remove remote prover from CI and makefile remove remote prover from README feat: create BatchProver enum, make remote proving optional update to latest changes in miden-base fix: udpate with miden-base latest review: use multiple statements to print the configs review: replace warn! with info! in prover init review: add instrumentation to batch prover review: rename remote_batch_prover to batch_prover_url review: remove default batch prover url constant review: move the batch_prover field from BatchProducer to BatchBuilder fix: rollback changes in Makefile docs: update CHANGELOG, add change to readme fix: make it compatible with miden-base
c0e0b04
to
7b80750
Compare
3fdeddb
to
dcb309a
Compare
docs: add changelog entry docs: update readme fix: make it compatible with miden-base
dcb309a
to
613b842
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.
Looks good! Thank you!
pub fn new_remote(endpoint: impl Into<String>) -> Self { | ||
info!(target: COMPONENT, "Using remote block prover"); | ||
Self::Remote(RemoteBlockProver::new(endpoint)) | ||
} |
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.
Similar comment here re specifying the security level and then making sure that generated proofs comply with it as in the other PR.
Closes #717