Add test to beacon node fallback feature (#6568)

This commit is contained in:
chonghe
2025-02-04 14:43:37 +08:00
committed by GitHub
parent 56f201a257
commit 3d06bc26d1
9 changed files with 405 additions and 13 deletions

View File

@@ -203,15 +203,15 @@ impl<E: EthSpec> ProductionValidatorClient<E> {
config.initialized_validators.clone(),
log.clone(),
)
.await
.map_err(|e| {
match e {
UnableToOpenVotingKeystore(err) => {
format!("Unable to initialize validators: {:?}. If you have recently moved the location of your data directory \
.await
.map_err(|e| {
match e {
UnableToOpenVotingKeystore(err) => {
format!("Unable to initialize validators: {:?}. If you have recently moved the location of your data directory \
make sure to update the location of voting_keystore_path in your validator_definitions.yml", err)
},
err => {
format!("Unable to initialize validators: {:?}", err)}
},
err => {
format!("Unable to initialize validators: {:?}", err)}
}
})?;