Skip to content

Commit

Permalink
FIX: image version
Browse files Browse the repository at this point in the history
  • Loading branch information
gbayasgalan committed Sep 6, 2024
1 parent 8b7c5ee commit 1efea2a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion launcher/src/backend/ethereum-services/PrysmBeaconService.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,14 @@ export class PrysmBeaconService extends NodeService {
"--p2p-udp-port=12001",
];

const imageVersion = network === "devnet" ? "v5.0.4" : "v5.1.0";

service.init(
"PrysmBeaconService", //service
service.id, //id
1, // configVersion
image, //image
network === "devnet" ? "v5.0.4" : "v5.1.0", //imageVersion
imageVersion, //imageVersion
cmd, // command
["/app/cmd/beacon-chain/beacon-chain"], //entrypoint
null, //env
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,14 @@ export class PrysmValidatorService extends NodeService {
"--enable-doppelganger=true",
];

const imageVersion = network === "devnet" ? "v5.0.4" : "v5.1.0";

service.init(
"PrysmValidatorService", //service
service.id, //id
1, // configVersion
image, //image
network === "devnet" ? "v5.0.4" : "v5.1.0", //imageVersion
imageVersion, //imageVersion
cmd, //command
["/app/cmd/validator/validator"], // entrypoint
null, // env
Expand Down

0 comments on commit 1efea2a

Please sign in to comment.