[benchmarks] Update weights for collectives (#2532)

* [benchmarks] pr with weights

* bump zombienet version (#2525)

* bump zombienet version

* fix para registration args

---------

Co-authored-by: paritytech-ci <paritytech-ci@parity.io>
Co-authored-by: Javier Viola <javier@parity.io>
This commit is contained in:
Paritytech CI
2023-05-08 10:01:10 +02:00
committed by GitHub
parent eb043cb76f
commit d4d34a39d2
18 changed files with 959 additions and 832 deletions
+12 -1
View File
@@ -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 }