This repository was archived by the owner on Jan 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -391,7 +391,7 @@ async fn main() -> Result<()> {
391
391
node_path,
392
392
node_version,
393
393
peers,
394
- skip_validation,
394
+ skip_validation : _ ,
395
395
} => {
396
396
println ! ( "=================================================" ) ;
397
397
println ! ( " Joining Local Network " ) ;
@@ -431,7 +431,7 @@ async fn main() -> Result<()> {
431
431
node_count : count,
432
432
peers,
433
433
safenode_bin_path : node_path,
434
- skip_validation,
434
+ skip_validation : true ,
435
435
} ;
436
436
run_network ( & mut local_node_registry, & NodeServiceManager { } , options) . await ?;
437
437
Ok ( ( ) )
@@ -499,7 +499,7 @@ async fn main() -> Result<()> {
499
499
faucet_version,
500
500
node_path,
501
501
node_version,
502
- skip_validation,
502
+ skip_validation : _ ,
503
503
} => {
504
504
let local_node_reg_path = & get_local_node_registry_path ( ) ?;
505
505
let mut local_node_registry = NodeRegistry :: load ( local_node_reg_path) ?;
@@ -534,7 +534,7 @@ async fn main() -> Result<()> {
534
534
node_count : count,
535
535
peers : None ,
536
536
safenode_bin_path : node_path,
537
- skip_validation,
537
+ skip_validation : true ,
538
538
} ;
539
539
run_network ( & mut local_node_registry, & NodeServiceManager { } , options) . await ?;
540
540
You can’t perform that action at this time.
0 commit comments