Skip to content

Commit

Permalink
Fix wrong branch of new repository
Browse files Browse the repository at this point in the history
The new repo doesn't have the branch release-v1.0.0, I have seen people having issues with this in StackExchange:
https://substrate.stackexchange.com/questions/9839/cant-start-test-network-using-zombienet-macos
https://substrate.stackexchange.com/questions/9981/what-version-of-polkadot-relaychain-and-substrate-parachain-template-can-be-used

The options are use: 
- git clone https://github.com/paritytech/polkadot to the old repo
- Don’t do the git checkout release-v1.0.0
- Update everything to work with the version release-v1.1.0
  • Loading branch information
AlexD10S authored Sep 20, 2023
1 parent 0e5e832 commit bbeb52b
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions content/md/en/docs/test/simulate-parachains.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,10 @@ To prepare a working folder with the binaries for the test network:
1. Checkout the latest release of Polkadot.

Release branches use the naming convention `release-v<n.n.n>`.
For example, the release branch used in this tutorial is `release-v1.0.0`.
You can check out a more recent release branch instead of using `release-v1.0.0`.
For example, the release branch used in this tutorial is `release-v1.0.0` which is in master branch.
You can check out a more recent release branch instead of using `git checkout release-v1.1.0`.
You can find information about recent releases and what's included in each release on the [Releases](https://github.com/paritytech/polkadot/releases) tab.
For example:
```bash
git checkout release-v1.0.0
```
1. Compile the relay chain node by running the following command:
```bash
Expand Down

0 comments on commit bbeb52b

Please sign in to comment.