Remove Goerli support (#5770)

* Delete Goerli

* Generate validator manager test vectors

* Fix newlines in CLI docs

* Fix deposit-cli tests

* Run web3signer tests for Holesky from Bellatrix

* Fix mainnet bellatrix web3signer test

* Merge remote-tracking branch 'origin/unstable' into rm-goerli

* Fix snafu
This commit is contained in:
Michael Sproul
2024-05-27 17:59:10 +10:00
committed by GitHub
parent 6f05863007
commit 7f8b600f2a
46 changed files with 64 additions and 255 deletions

View File

@@ -581,7 +581,7 @@ pub mod tests {
type E = MainnetEthSpec;
const TEST_VECTOR_DEPOSIT_CLI_VERSION: &str = "2.3.0";
const TEST_VECTOR_DEPOSIT_CLI_VERSION: &str = "2.7.0";
fn junk_execution_address() -> Option<Address> {
Some(Address::from_str("0x0f51bb10119727a7e5ea3538074fb341f56b09ad").unwrap())
@@ -933,12 +933,6 @@ pub mod tests {
for deposit in &mut deposits {
// Ensures we can match test vectors.
deposit.deposit_cli_version = TEST_VECTOR_DEPOSIT_CLI_VERSION.to_string();
// We use "prater" and the vectors use "goerli" now. The two names refer to the same
// network so there should be no issue here.
if deposit.network_name == "prater" {
deposit.network_name = "goerli".to_string();
}
}
deposits
};