Skip to content

Commit

Permalink
testnet: remove bft core nodes (now that d=0)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbgi committed Apr 6, 2021
1 parent 5e32576 commit 69f8a14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions topologies/testnet.nix
Expand Up @@ -59,17 +59,17 @@ let

stakingPoolNodes = let
mkStakingPool = mkStakingPoolForRegions regions;
in regionalConnectGroupWith bftCoreNodes (fullyConnectNodes [
in fullyConnectNodes [
(mkStakingPool "a" 1 "" { nodeId = 8; })
(mkStakingPool "b" 1 "" { nodeId = 9; })
(mkStakingPool "c" 1 "" { nodeId = 10; })
(mkStakingPool "d" 1 "" { nodeId = 11; })
(mkStakingPool "e" 1 "" { nodeId = 12; })
(mkStakingPool "f" 1 "" { nodeId = 13; })
(mkStakingPool "a" 2 "" { nodeId = 14; })
]);
];

coreNodes = map (withAutoRestartEvery 6) (bftCoreNodes ++ stakingPoolNodes);
coreNodes = map (withAutoRestartEvery 6) stakingPoolNodes;

relayNodes = map (withAutoRestartEvery 6) (mkRelayTopology {
inherit regions coreNodes;
Expand Down

0 comments on commit 69f8a14

Please sign in to comment.