From 710ab5ca7616cd8a20277f4ebd028fcfd41bbb1a Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Tue, 10 Sep 2024 19:50:47 -0400 Subject: [PATCH] chore: replace retired iohk.io nodes in docs/tests Signed-off-by: Chris Gianelloni --- README.md | 2 +- topology_test.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8c6a6a11..f9ed8c58 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ make Run the chain-sync test program against a public mainnet node, starting at the beginning of the Shelley era: ``` -./gouroboros -address backbone.cardano-mainnet.iohk.io:3001 -network mainnet -ntn chain-sync -bulk -start-era shelley +./gouroboros -address backbone.cardano.iog.io:3001 -network mainnet -ntn chain-sync -bulk -start-era shelley ``` This will produce a LOT of output and take quite a few hours to reach chain tip. You're mostly looking for it to get through diff --git a/topology_test.go b/topology_test.go index bd04b178..af2f3c2f 100644 --- a/topology_test.go +++ b/topology_test.go @@ -33,7 +33,7 @@ var topologyTests = []topologyTestDefinition{ { "Producers": [ { - "addr": "relays-new.cardano-mainnet.iohk.io", + "addr": "backbone.cardano.iog.io", "port": 3001, "valency": 2 } @@ -43,7 +43,7 @@ var topologyTests = []topologyTestDefinition{ expectedObject: &ouroboros.TopologyConfig{ Producers: []ouroboros.TopologyConfigLegacyProducer{ { - Address: "relays-new.cardano-mainnet.iohk.io", + Address: "backbone.cardano.iog.io", Port: 3001, Valency: 2, }, @@ -64,7 +64,7 @@ var topologyTests = []topologyTestDefinition{ { "accessPoints": [ { - "address": "backbone.cardano-mainnet.iohk.io", + "address": "backbone.cardano.iog.io", "port": 3001 } ], @@ -95,7 +95,7 @@ var topologyTests = []topologyTestDefinition{ { AccessPoints: []ouroboros.TopologyConfigP2PAccessPoint{ { - Address: "backbone.cardano-mainnet.iohk.io", + Address: "backbone.cardano.iog.io", Port: 3001, }, },