Skip to content

Commit

Permalink
add missing sets for holesky
Browse files Browse the repository at this point in the history
  • Loading branch information
pablomendezroyo committed Oct 31, 2023
1 parent 6dba2e3 commit 52cfecb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/installer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@dappnode/params": "^0.1.0",
"@dappnode/schemas": "^0.1.8",
"@dappnode/toolkit": "^0.1.20",
"@dappnode/types": "^0.1.29",
"@dappnode/types": "^0.1.30",
"@dappnode/utils": "^0.1.0",
"async-retry": "1.3.1",
"data-uri-to-buffer": "2.0.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/installer/src/packages/packageRemove.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ async function removeStakerPkgFromDbIfSelected({
case db.executionClientLukso.get():
await db.executionClientLukso.set(undefined);
break;
case db.executionClientHolesky.get():
await db.executionClientHolesky.set(undefined);
break;
case db.consensusClientMainnet.get():
await db.consensusClientMainnet.set(undefined);
break;
Expand All @@ -161,6 +164,9 @@ async function removeStakerPkgFromDbIfSelected({
case db.consensusClientLukso.get():
await db.consensusClientLukso.set(undefined);
break;
case db.consensusClientHolesky.get():
await db.consensusClientHolesky.set(undefined);
break;
case mevBoostMainnet:
await db.mevBoostMainnet.set(false);
break;
Expand Down
2 changes: 2 additions & 0 deletions packages/utils/src/stakerUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ const getDefaultCheckpointSync = (network: Network): string =>
? "https://checkpoint-sync-prater.dappnode.io"
: network === "gnosis"
? "https://checkpoint-sync-gnosis.dappnode.io"
: network === "holesky"
? "https://checkpoint-sync-holesky.dappnode.io"
: network === "lukso"
? "https://checkpoints.mainnet.lukso.network"
: "";

0 comments on commit 52cfecb

Please sign in to comment.