Skip to content

Commit

Permalink
Revert "Execution Integration Tests Correction (sigp#4034)"
Browse files Browse the repository at this point in the history
This reverts commit be29394.
  • Loading branch information
paulhauner committed Mar 1, 2023
1 parent 98fbaad commit 79f926b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions testing/execution_engine_integration/src/geth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::{env, fs::File};
use tempfile::TempDir;
use unused_port::unused_tcp_port;

// const GETH_BRANCH: &str = "master";
const GETH_BRANCH: &str = "master";
const GETH_REPO_URL: &str = "https://github.com/ethereum/go-ethereum";

pub fn build_result(repo_dir: &Path) -> Output {
Expand All @@ -27,9 +27,7 @@ pub fn build(execution_clients_dir: &Path) {
}

// Get the latest tag on the branch
// TODO: Update when version is corrected
// let last_release = build_utils::get_latest_release(&repo_dir, GETH_BRANCH).unwrap();
let last_release = "v1.11.1";
let last_release = build_utils::get_latest_release(&repo_dir, GETH_BRANCH).unwrap();
build_utils::checkout(&repo_dir, dbg!(&last_release)).unwrap();

// Build geth
Expand Down

0 comments on commit 79f926b

Please sign in to comment.