Skip to content

Commit

Permalink
Document how to connect to other nodes than toxproxy
Browse files Browse the repository at this point in the history
  • Loading branch information
facundominguez committed Aug 26, 2024
1 parent a75a7ab commit 928a6f7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions scripts/genesis-benchmarks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,31 @@ it. But one can start syncing from slot 0 with,
$ SYNC_FROM_0=1 NUM_SLOTS=155000 ./run-syncing-node.sh 1
```

### How to connect to other nodes than toxiproxy

The following uses a custom topology file, instead of generating one that
connects to toxiproxy.

```
$ TOPOLOGY=toplogy.json ./run-syncing-node.sh 1
```

For instance,
```
$ cat topology.json
{"publicRoots": []
, "localRoots":
[{ "accessPoints":
[ {"address": "34.216.201.242", "port": 3001}
, {"address": "3.77.115.8", "port": 3001}
]
, "advertise": false
, "hotValency": 2
, "trustable": true
}]
}
```

### How to collect the eventlog of the syncing node

The following command collects the eventlog.
Expand Down

0 comments on commit 928a6f7

Please sign in to comment.