Skip to content

Commit

Permalink
Fix root networks
Browse files Browse the repository at this point in the history
  • Loading branch information
dappnodedev committed Sep 5, 2024
1 parent 73cec02 commit 01dcea0
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions packages/stakers/src/stakerComponent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,11 @@ export class StakerComponent {

protected getComposeRootNetworks(network: Network): NonNullable<UserSettings["networks"]>["rootNetworks"] {
return {
rootNetworks: {
[params.DOCKER_STAKER_NETWORKS[network]]: {
external: true
},
[params.DOCKER_PRIVATE_NETWORK_NAME]: {
external: true
}
[params.DOCKER_STAKER_NETWORKS[network]]: {
external: true
},
[params.DOCKER_PRIVATE_NETWORK_NAME]: {
external: true
}
};
}
Expand Down

0 comments on commit 01dcea0

Please sign in to comment.