mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-09 20:11:09 +00:00
bump zombienet version (#2525)
* bump zombienet version * fix para registration args
This commit is contained in:
+1
-1
@@ -29,7 +29,7 @@ variables:
|
||||
CI_IMAGE: "paritytech/ci-linux:production"
|
||||
DOCKER_OS: "debian:stretch"
|
||||
ARCH: "x86_64"
|
||||
ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.3.43"
|
||||
ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.3.50"
|
||||
BUILDAH_IMAGE: "quay.io/buildah/stable:v1.29"
|
||||
BUILDAH_COMMAND: "buildah --storage-driver overlay2"
|
||||
|
||||
|
||||
@@ -3,7 +3,18 @@ async function run(nodeName, networkInfo, args) {
|
||||
const para = networkInfo.paras[paraIdStr];
|
||||
const relayNode = networkInfo.relay[0];
|
||||
|
||||
await zombie.registerParachain(parseInt(paraIdStr,10),para.wasmPath, para.statePath, relayNode.wsUri, "//Alice", true);
|
||||
const registerParachainOptions = {
|
||||
id: parseInt(paraIdStr,10),
|
||||
wasmPath: para.wasmPath,
|
||||
statePath: para.statePath,
|
||||
apiUrl: relayNode.wsUri,
|
||||
onboardAsParachain: true,
|
||||
seed: "//Alice",
|
||||
finalization: true
|
||||
};
|
||||
|
||||
|
||||
await zombie.registerParachain(registerParachainOptions);
|
||||
}
|
||||
|
||||
module.exports = { run }
|
||||
|
||||
Reference in New Issue
Block a user