-
Notifications
You must be signed in to change notification settings - Fork 8
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
fix: make uploader upscale work #203
Conversation
// get the safenode manager version from a random generic node vm | ||
let safenode_manager_version = genesis_node_registry | ||
.retrieved_registries | ||
.iter() | ||
.find_map(|(_, reg)| reg.daemon.as_ref()) | ||
.ok_or_else(|| eyre!("Unable to obtain the daemon"))? | ||
.version | ||
.parse()?; | ||
.clone(); | ||
// FIXME: the safenode manager version from the daemon is not written properly by safenode manager. |
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.
Issue created in safe_network
Ok(EnvironmentDetails { | ||
environment_type, | ||
deployment_type, | ||
evm_network: EvmNetwork::ArbitrumOne, |
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.
This error happened quite a few times and my Custom deployment was broken because of this line. We should not assume the evm_network
No description provided.