-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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(prover): Add public object store to prover config #2185
feat(prover): Add public object store to prover config #2185
Conversation
You forgot to change from_env like here https://github.com/matter-labs/zksync-era/pull/2183/files |
@@ -6,6 +6,7 @@ impl FromEnv for FriProverConfig { | |||
fn from_env() -> anyhow::Result<Self> { | |||
let mut prover: FriProverConfig = envy_load("fri_prover", "FRI_PROVER_")?; | |||
prover.object_store = ObjectStoreConfig::from_env().ok(); | |||
prover.public_object_store = ObjectStoreConfig::from_env().ok(); |
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.
it should be PublicObjectStore
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.
please don't change prover.object_store
it will be merged in a few minutes by another pr
Closed in favor of #2187 |
What ❔
Add public object store to prover config