Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update additional mainnet hostname references #706

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions topology_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var topologyTests = []topologyTestDefinition{
{
"Producers": [
{
"addr": "relays-new.cardano-mainnet.iohk.io",
"addr": "backbone.cardano.iog.io",
"port": 3001,
"valency": 2
}
Expand All @@ -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,
},
Expand All @@ -64,7 +64,7 @@ var topologyTests = []topologyTestDefinition{
{
"accessPoints": [
{
"address": "backbone.cardano-mainnet.iohk.io",
"address": "backbone.cardano.iog.io",
"port": 3001
}
],
Expand Down Expand Up @@ -95,7 +95,7 @@ var topologyTests = []topologyTestDefinition{
{
AccessPoints: []ouroboros.TopologyConfigP2PAccessPoint{
{
Address: "backbone.cardano-mainnet.iohk.io",
Address: "backbone.cardano.iog.io",
Port: 3001,
},
},
Expand Down