Skip to content

Commit

Permalink
FIX: endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
gbayasgalan committed Dec 18, 2024
1 parent eb2aa37 commit 7166e6d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ export class PrysmValidatorService extends NodeService {
if (network === "devnet") {
const consensusDir = client.volumes.find((vol) => vol.servicePath.includes("/consensus")).destinationPath;
volumes.push(new ServiceVolume(consensusDir, configYamlDir));
return client.buildConsensusClientEndpoint();
} else {
return client.buildConsensusClientHttpEndpointUrl();
}
return client.buildConsensusClientEndpoint();
})
.join();

Expand Down

0 comments on commit 7166e6d

Please sign in to comment.