Skip to content
This repository was archived by the owner on May 21, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fixing docs
  • Loading branch information
hbulgarini committed May 31, 2023
commit d48984d9d348077d2aaa64a4628fc4448c150a62
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,9 @@ First, complete the [basic Rust setup instructions](./docs/rust-setup.md).
Use the following command to build the Trappist collator binary:

```bash
cargo b -r --features with-trappist-runtime
cargo b -r --no-default-features --features with-stout-runtime --target-dir target_stout
cargo build --release
```

Alternatively, run:
```bash
./scripts/build_runtimes.sh
```


### XCM Playground via Zombienet

Create a `bin` directory into the root of this repository and place the following binaries inside of it:
Expand Down
2 changes: 0 additions & 2 deletions scripts/build_runtimes.sh

This file was deleted.

8 changes: 4 additions & 4 deletions zombienet/full_network.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ chain = "trappist-local"

[[parachains.collators]]
name = "trappist-collator01"
command = "./target/release/trappist-collator"
command = "./target/release/trappist-node"
ws_port = 9920
args = ["--log=xcm=trace,pallet-assets=trace"]

[[parachains.collators]]
name = "trappist-collator02"
command = "./target/release/trappist-collator"
command = "./target/release/trappist-node"
ws_port = 9921
args = ["--log=xcm=trace,pallet-assets=trace"]

Expand All @@ -70,13 +70,13 @@ chain = "stout-local"

[[parachains.collators]]
name = "stout-collator01"
command = "./target_stout/release/stout-collator"
command = "./target/release/trappist-node"
ws_port = 9930
args = ["--log=xcm=trace,pallet-assets=trace"]

[[parachains.collators]]
name = "stout-collator02"
command = "./target_stout/release/stout-collator"
command = "./target/release/trappist-node"
ws_port = 9931
args = ["--log=xcm=trace,pallet-assets=trace"]

Expand Down
4 changes: 2 additions & 2 deletions zombienet/stout_rococo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ chain = "stout-local"

[[parachains.collators]]
name = "stout-collator01"
command = "./target_stout/release/stout-collator"
command = "./target/release/trappist-node"
ws_port = 9930
args = ["--log=xcm=trace,pallet-assets=trace"]

[[parachains.collators]]
name = "stout-collator02"
command = "./target_stout/release/stout-collator"
command = "./target/release/trappist-node"
ws_port = 9931
args = ["--log=xcm=trace,pallet-assets=trace"]

Expand Down
4 changes: 2 additions & 2 deletions zombienet/trappist_rococo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ chain = "trappist-local"

[[parachains.collators]]
name = "trappist-collator01"
command = "./target/release/trappist-collator"
command = "./target/release/trappist-node"
ws_port = 9920
args = ["--log=xcm=trace,pallet-assets=trace"]

[[parachains.collators]]
name = "trappist-collator02"
command = "./target/release/trappist-collator"
command = "./target/release/trappist-node"
ws_port = 9921
args = ["--log=xcm=trace,pallet-assets=trace"]

Expand Down