File tree 2 files changed +2
-2
lines changed
services/beaconchain/src/main/java/tech/pegasys/teku/services/beaconchain
teku/src/main/java/tech/pegasys/teku/cli
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -898,12 +898,12 @@ public void initValidatorApiHandler() {
898
898
new GraffitiBuilder (
899
899
beaconConfig .validatorConfig ().getClientGraffitiAppendFormat (),
900
900
beaconConfig .validatorConfig ().getGraffitiProvider ().get ());
901
+ eventChannels .subscribe (ExecutionClientVersionChannel .class , graffitiBuilder );
901
902
final ExecutionClientVersionProvider executionClientVersionProvider =
902
903
new ExecutionClientVersionProvider (
903
904
executionLayer ,
904
905
eventChannels .getPublisher (ExecutionClientVersionChannel .class ),
905
906
graffitiBuilder .getConsensusClientVersion ());
906
- eventChannels .subscribe (ExecutionClientVersionChannel .class , graffitiBuilder );
907
907
final BlockOperationSelectorFactory operationSelector =
908
908
new BlockOperationSelectorFactory (
909
909
spec ,
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ private CommandLine getConfigFileCommandLine(final ConfigFileCommand configFileC
212
212
}
213
213
214
214
private CommandLine getCommandLine () {
215
- return configureCommandLine (new CommandLine (this )) .addSubcommand (validatorClientSubcommand );
215
+ return configureCommandLine (new CommandLine (this ).addSubcommand (validatorClientSubcommand ) );
216
216
}
217
217
218
218
public int parse (final String [] args ) {
You can’t perform that action at this time.
0 commit comments