Update key generation in validator manager (#7548)

#7518 breaks the key generation process in `validator_manager/test_vectors/generate.py` after updating to `ethstaker-deposit-cli`. This PR updates the key generation process, tested and successfully generated the deposit data JSON files.
This commit is contained in:
chonghe
2025-06-05 14:34:33 +08:00
committed by GitHub
parent 2d9fc34d43
commit dcee76c0dc
14 changed files with 19 additions and 17 deletions

View File

@@ -596,7 +596,7 @@ pub mod tests {
type E = MainnetEthSpec;
const TEST_VECTOR_DEPOSIT_CLI_VERSION: &str = "2.7.0";
const TEST_VECTOR_DEPOSIT_CLI_VERSION: &str = "1.2.2"; // Update to ethstaker-deposit-cli version
fn junk_execution_address() -> Option<Address> {
Some(Address::from_str("0x0f51bb10119727a7e5ea3538074fb341f56b09ad").unwrap())
@@ -882,7 +882,7 @@ pub mod tests {
}
#[tokio::test]
async fn staking_deposit_cli_vectors() {
async fn ethstaker_deposit_cli_vectors() {
let vectors_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("test_vectors")
.join("vectors");