Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Commit

Permalink
test: force skip validation
Browse files Browse the repository at this point in the history
- enable this once validation passes succesfully
  • Loading branch information
RolandSherwin committed Jan 23, 2024
1 parent 69c8652 commit 41f0b99
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ async fn main() -> Result<()> {
node_path,
node_version,
peers,
skip_validation,
skip_validation: _,
} => {
println!("=================================================");
println!(" Joining Local Network ");
Expand Down Expand Up @@ -431,7 +431,7 @@ async fn main() -> Result<()> {
node_count: count,
peers,
safenode_bin_path: node_path,
skip_validation,
skip_validation: true,
};
run_network(&mut local_node_registry, &NodeServiceManager {}, options).await?;
Ok(())
Expand Down Expand Up @@ -499,7 +499,7 @@ async fn main() -> Result<()> {
faucet_version,
node_path,
node_version,
skip_validation,
skip_validation: _,
} => {
let local_node_reg_path = &get_local_node_registry_path()?;
let mut local_node_registry = NodeRegistry::load(local_node_reg_path)?;
Expand Down Expand Up @@ -534,7 +534,7 @@ async fn main() -> Result<()> {
node_count: count,
peers: None,
safenode_bin_path: node_path,
skip_validation,
skip_validation: true,
};
run_network(&mut local_node_registry, &NodeServiceManager {}, options).await?;

Expand Down

0 comments on commit 41f0b99

Please sign in to comment.