mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 04:01:51 +00:00
Fix rust 1.65 lints (#3682)
## Issue Addressed New lints for rust 1.65 ## Proposed Changes Notable change is the identification or parameters that are only used in recursion ## Additional Info na
This commit is contained in:
@@ -13,7 +13,7 @@ const GETH_REPO_URL: &str = "https://github.com/ethereum/go-ethereum";
|
||||
pub fn build_result(repo_dir: &Path) -> Output {
|
||||
Command::new("make")
|
||||
.arg("geth")
|
||||
.current_dir(&repo_dir)
|
||||
.current_dir(repo_dir)
|
||||
.output()
|
||||
.expect("failed to make geth")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user