We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d49652 commit 7e6d4d3Copy full SHA for 7e6d4d3
validator/client/src/main/java/tech/pegasys/teku/validator/client/ValidatorClientService.java
@@ -424,7 +424,10 @@ private static ValidatorLoader createValidatorLoader(
424
HttpClientExternalSignerFactory.create(validatorConfig);
425
final Optional<AsyncRunner> maybeAsyncRunner =
426
Optional.ofNullable(
427
- validatorConfig.validatorExternalSignerPublicKeysRetryEnabled() ? asyncRunner : null);
+ !validatorConfig.getValidatorExternalSignerPublicKeySources().isEmpty()
428
+ && validatorConfig.validatorExternalSignerPublicKeysRetryEnabled()
429
+ ? asyncRunner
430
+ : null);
431
return ValidatorLoader.create(
432
config.getSpec(),
433
validatorConfig,
0 commit comments