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

Commit 0602b31

Browse files
committed
test: force skip validation
- enable this once validation passes succesfully
1 parent d359b1b commit 0602b31

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ async fn main() -> Result<()> {
391391
node_path,
392392
node_version,
393393
peers,
394-
skip_validation,
394+
skip_validation: _,
395395
} => {
396396
println!("=================================================");
397397
println!(" Joining Local Network ");
@@ -431,7 +431,7 @@ async fn main() -> Result<()> {
431431
node_count: count,
432432
peers,
433433
safenode_bin_path: node_path,
434-
skip_validation,
434+
skip_validation: true,
435435
};
436436
run_network(&mut local_node_registry, &NodeServiceManager {}, options).await?;
437437
Ok(())
@@ -499,7 +499,7 @@ async fn main() -> Result<()> {
499499
faucet_version,
500500
node_path,
501501
node_version,
502-
skip_validation,
502+
skip_validation: _,
503503
} => {
504504
let local_node_reg_path = &get_local_node_registry_path()?;
505505
let mut local_node_registry = NodeRegistry::load(local_node_reg_path)?;
@@ -534,7 +534,7 @@ async fn main() -> Result<()> {
534534
node_count: count,
535535
peers: None,
536536
safenode_bin_path: node_path,
537-
skip_validation,
537+
skip_validation: true,
538538
};
539539
run_network(&mut local_node_registry, &NodeServiceManager {}, options).await?;
540540

0 commit comments

Comments
 (0)