-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add zombienet suite for unneeded para bug (#766)
* Add zombie suite for unneeded para bug * Fix test * fmt and lint
- Loading branch information
1 parent
215771f
commit 3cc9370
Showing
3 changed files
with
514 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
{ | ||
"settings": { | ||
"timeout": 1000, | ||
"provider": "native" | ||
}, | ||
"relaychain": { | ||
"chain_spec_path": "specs/tanssi-relay.json", | ||
"default_command": "../target/release/tanssi-relay", | ||
"default_args": [ | ||
"--no-hardware-benchmarks", | ||
"-lparachain=debug", | ||
"--database=paritydb", | ||
"--no-beefy", | ||
"--wasmtime-precompiled=wasm" | ||
], | ||
"genesis": { | ||
"runtimeGenesis": { | ||
"patch": { | ||
"configuration": { | ||
"config": { | ||
"async_backing_params": { | ||
"allowed_ancestry_len": 2, | ||
"max_candidate_depth": 3 | ||
}, | ||
"scheduler_params": { | ||
"scheduling_lookahead": 2, | ||
"num_cores": 4 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"nodes": [ | ||
{ | ||
"name": "alice", | ||
"ws_port": "9947", | ||
"validator": true | ||
}, | ||
{ | ||
"name": "bob", | ||
"validator": true | ||
}, | ||
{ | ||
"name": "charlie", | ||
"validator": true | ||
}, | ||
{ | ||
"name": "dave", | ||
"validator": true | ||
} | ||
] | ||
}, | ||
"parachains": [ | ||
{ | ||
"id": 2000, | ||
"chain_spec_path": "specs/single-container-template-container-2000.json", | ||
"collators": [ | ||
{ | ||
"name": "FullNode-2000", | ||
"validator": false, | ||
"command": "../target/release/container-chain-simple-node", | ||
"args": ["--no-hardware-benchmarks", "--database=paritydb", "--wasmtime-precompiled=wasm"], | ||
"ws_port": 9949, | ||
"p2p_port": 33049, | ||
"prometheus_port": 33102 | ||
}, | ||
{ | ||
"name": "Collator-01", | ||
"command": "../target/release/tanssi-node solo-chain", | ||
"args": ["--no-hardware-benchmarks", "--database=paritydb", "--wasmtime-precompiled=wasm"], | ||
"prometheus_port": 33102 | ||
}, | ||
{ | ||
"name": "Collator-02", | ||
"command": "../target/release/tanssi-node solo-chain", | ||
"args": ["--no-hardware-benchmarks", "--database=paritydb", "--wasmtime-precompiled=wasm"], | ||
"prometheus_port": 33102 | ||
}, | ||
{ | ||
"name": "Collator-03", | ||
"command": "../target/release/tanssi-node solo-chain", | ||
"args": ["--no-hardware-benchmarks", "--database=paritydb", "--wasmtime-precompiled=wasm"], | ||
"prometheus_port": 33102 | ||
}, | ||
{ | ||
"name": "Collator-04", | ||
"command": "../target/release/tanssi-node solo-chain", | ||
"args": ["--no-hardware-benchmarks", "--database=paritydb", "--wasmtime-precompiled=wasm"], | ||
"prometheus_port": 33102 | ||
}, | ||
{ | ||
"name": "Collator-05", | ||
"command": "../target/release/tanssi-node solo-chain", | ||
"args": ["--no-hardware-benchmarks", "--database=paritydb", "--wasmtime-precompiled=wasm"], | ||
"prometheus_port": 33102 | ||
}, | ||
{ | ||
"name": "Collator-06", | ||
"command": "../target/release/tanssi-node solo-chain", | ||
"args": ["--no-hardware-benchmarks", "--database=paritydb", "--wasmtime-precompiled=wasm"], | ||
"prometheus_port": 33102 | ||
} | ||
] | ||
}, | ||
{ | ||
"id": 2001, | ||
"chain_spec_path": "specs/single-container-template-container-2001.json", | ||
"collators": [ | ||
{ | ||
"name": "FullNode-2001", | ||
"validator": false, | ||
"command": "../target/release/container-chain-frontier-node", | ||
"args": ["--no-hardware-benchmarks", "--database=paritydb", "--wasmtime-precompiled=wasm"], | ||
"ws_port": 9950, | ||
"p2p_port": 33050 | ||
} | ||
] | ||
}, | ||
{ | ||
"id": 2002, | ||
"chain_spec_path": "specs/single-container-template-container-2002.json", | ||
"add_to_genesis": false, | ||
"register_para": false, | ||
"onboard_as_parachain": false, | ||
"collators": [ | ||
{ | ||
"name": "FullNode-2002", | ||
"validator": false, | ||
"command": "../target/release/container-chain-simple-node", | ||
"args": ["--no-hardware-benchmarks", "--database=paritydb", "--wasmtime-precompiled=wasm"], | ||
"ws_port": 9951, | ||
"p2p_port": 33051 | ||
} | ||
] | ||
} | ||
], | ||
"types": { | ||
"Header": { | ||
"number": "u64", | ||
"parent_hash": "Hash", | ||
"post_state": "Hash" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.