Skip to content

Commit

Permalink
Merge pull request #796 from serokell/krendelhoff/chore-add-paris2net
Browse files Browse the repository at this point in the history
[Chore] Support paris2net instead of parisnet
  • Loading branch information
krendelhoff2 authored May 30, 2024
2 parents 3540397 + c337d38 commit 57c842c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion baking/src/tezos_baking/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def pprint_options(self):
"mainnet": "Main Tezos network",
"ghostnet": "Long running test network, currently using the Oxford Tezos protocol",
"oxfordnet": "Test network using the Oxford2 Tezos protocol",
"parisnet": "Test network using the PtParisB Tezos protocol",
"paris2net": "Test network using the PtParisB Tezos protocol",
}

# Steps
Expand Down
2 changes: 1 addition & 1 deletion baking/src/tezos_baking/tezos_setup_wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def network_name_or_teztnets_url(network):
id="network",
prompt="Which Tezos network would you like to use?\nCurrently supported:",
help="The selected network will be used to set up all required services.\n"
"The currently supported protocol is Proxford (used on `oxfordnet`, `ghostnet` and `mainnet`) and PtParisB (used on `parisnet`).\n"
"The currently supported protocol is Proxford (used on `oxfordnet`, `ghostnet` and `mainnet`) and PtParisB (used on `paris2net`).\n"
"Keep in mind that you must select the test network (e.g. ghostnet)\n"
"if you plan on baking with a faucet JSON file.\n",
options=networks,
Expand Down
4 changes: 2 additions & 2 deletions docker/package/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
"mainnet": "mainnet",
"ghostnet": "ghostnet",
"oxfordnet": "https://teztnets.com/oxfordnet",
"parisnet": "https://teztnets.com/parisnet",
"paris2net": "https://teztnets.com/paris2net",
}
networks_protos = {
"mainnet": ["Proxford"],
"ghostnet": ["Proxford"],
"oxfordnet": ["Proxford"],
"parisnet": ["PtParisB"],
"paris2net": ["PtParisB"],
}

protocol_numbers = {
Expand Down
2 changes: 1 addition & 1 deletion docs/baking.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ that you can use by following the [installation instructions](https://www.raspbe
In order to run a baking instance, you'll need the following Tezos binaries:
`tezos-client`, `tezos-node`, `tezos-baker-<proto>`.

The currently supported protocol is `Proxford` (used on `oxfordnet`, `ghostnet` and `mainnet`) and `ParisB` (used on `parisnet`).
The currently supported protocol is `Proxford` (used on `oxfordnet`, `ghostnet` and `mainnet`) and `ParisB` (used on `paris2net`).
Also, note that the corresponding packages have protocol
suffix in lowercase, e.g. the list of available baker packages can be found
[here](https://launchpad.net/~serokell/+archive/ubuntu/tezos/+packages?field.name_filter=tezos-baker&field.status_filter=published).
Expand Down
2 changes: 1 addition & 1 deletion docs/systemd.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ It's possible to run multiple similar services, e.g. two `tezos-node`s that run
networks.

`tezos-node` packages provide multiple services out of the box:
- `tezos-node-parisnet`
- `tezos-node-paris2net`
- `tezos-node-oxfordnet`
- `tezos-node-ghostnet`
- `tezos-node-mainnet`
Expand Down

0 comments on commit 57c842c

Please sign in to comment.