Skip to content

Commit

Permalink
Update neard/src/main.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Vlad Frolov <[email protected]>
  • Loading branch information
mikhailOK and frol authored Jul 10, 2020
1 parent aaa8e74 commit 2c2ad3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neard/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ fn main() {
let system = System::new("NEAR");
let (_, _, arbiters) = start_with_config(home_dir, near_config);
system.run().unwrap();
arbiters.into_iter().map(|mut a| a.join()).for_each(drop);
arbiters.into_iter().for_each(|mut a| a.join());
}
("unsafe_reset_data", Some(_args)) => {
let store_path = get_store_path(home_dir);
Expand Down

0 comments on commit 2c2ad3f

Please sign in to comment.