Skip to content

Commit

Permalink
hardcode staker pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
pablomendezroyo committed Apr 24, 2023
1 parent 037ae40 commit feb51e5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/commands/githubActions/endToEndTest/params.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,23 +140,23 @@ export const nonStakerPackagesSetup = [
"dappnode-exporter.dnp.dappnode.eth"
];

export const stakerPkgsToKeep = (network: Network): string[] => {
const stakerPkgsToKeep = (network: Network): string[] => {
return network === "mainnet"
? [
stakerMainnetConfig.executionClient.dnpName,
stakerMainnetConfig.consensusClient.dnpName,
"geth.dnp.dappnode.eth",
"prysm.dnp.dappnode.eth",
"mev-boost.dnp.dappnode.eth",
"web3signer.dnp.dappnode.eth"
]
: network === "gnosis"
? [
stakerGnosisConfig.executionClient.dnpName,
stakerGnosisConfig.consensusClient.dnpName,
"nethermind-xdai.dnp.dappnode.eth",
"teku-gnosis.dnp.dappnode.eth",
"web3signer-gnosis.dnp.dappnode.eth"
]
: [
stakerPraterConfig.executionClient.dnpName,
stakerPraterConfig.consensusClient.dnpName,
"goerli-besu.dnp.dappnode.eth",
"lighthouse-prater.dnp.dappnode.eth",
"mev-boost-goerli.dnp.dappnode.eth",
"web3signer-prater.dnp.dappnode.eth"
];
Expand Down

0 comments on commit feb51e5

Please sign in to comment.