Rename cumulus-test-parachain-collator to rococo-collator (#173)

Ran `find . -type f -name "*" -print0 | xargs -0 sed -i -e "s/cumulus-test-parachain-collator/rococo-collator/g"`
This commit is contained in:
Dan Forbes
2020-08-04 10:44:02 -07:00
committed by GitHub
parent 6f50d0928d
commit a51df009d8
11 changed files with 78 additions and 78 deletions
+4 -4
View File
@@ -29,13 +29,13 @@ Collators are similar to validators in the relay chain. These nodes build the bl
To run a collator on this test network you will need to compile the following binary:
```
cargo build --release -p cumulus-test-parachain-collator
cargo build --release -p rococo-collator
```
After the build is finished you can use the binary to run a collator for all three parachains:
```
./target/release/cumulus-test-parachain-collator --chain tick --validator
./target/release/rococo-collator --chain tick --validator
```
This will run the collator for the `Tick` parachain. To run a collator for one of the other nodes, the chain argument needs to be changed.
@@ -45,13 +45,13 @@ This will run the collator for the `Tick` parachain. To run a collator for one o
To run a full node that should sync one of the parachains, you need to compile the following binary:
```
cargo build --release -p cumulus-test-parachain-collator
cargo build --release -p rococo-collator
```
After the build is finished you can use the binary to run a collator for all three parachains:
```
./target/release/cumulus-test-parachain-collator --chain tick
./target/release/rococo-collator --chain tick
```
### Tick, Trick and Track