Skip to content

Commit

Permalink
FIX: geth POW depracation
Browse files Browse the repository at this point in the history
  • Loading branch information
gbayasgalan committed Nov 6, 2024
1 parent 3b4bd28 commit 88178a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion launcher/src/backend/ethereum-services/GethService.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class GethService extends NodeService {
service.id, // id
1, // configVersion
"ethereum/client-go", // image
"v1.10.25", // imageVersion
"v1.13.15", // imageVersion
cmd, // command
["geth"], // entrypoint
null, // env
Expand Down
4 changes: 1 addition & 3 deletions launcher/src/backend/ethereum-services/PrysmBeaconService.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,12 @@ 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
imageVersion, //imageVersion
"v5.0.4", //imageVersion
cmd, // command
["/app/cmd/beacon-chain/beacon-chain"], //entrypoint
null, //env
Expand Down
2 changes: 2 additions & 0 deletions launcher/src/store/genesis.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 88178a5

Please sign in to comment.