Skip to content

Commit

Permalink
REMOVE: unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoPlays committed Nov 26, 2024
1 parent 08acbb2 commit 016d1f6
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions launcher/src/backend/ethereum-services/PrysmValidatorService.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,7 @@ export class PrysmValidatorService extends NodeService {
})
.join();

const cmd = service.generatePrysmValidatorCommand(
network,
dataDir,
walletDir,
passwordDir,
graffitiDir,
configYamlDir,
provider,
providerGateway
);
const cmd = service.generatePrysmValidatorCommand(network, dataDir, walletDir, passwordDir, graffitiDir, configYamlDir, provider);

service.init(
"PrysmValidatorService", //service
Expand All @@ -67,7 +58,7 @@ export class PrysmValidatorService extends NodeService {
return service;
}

generatePrysmValidatorCommand(network, dataDir, walletDir, passwordDir, graffitiDir, configYamlDir, provider, providerGateway) {
generatePrysmValidatorCommand(network, dataDir, walletDir, passwordDir, graffitiDir, configYamlDir, provider) {
const commonCmd = [
"--accept-terms-of-use=true",
`--enable-beacon-rest-api`,
Expand Down

0 comments on commit 016d1f6

Please sign in to comment.