mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 18:01:03 +00:00
[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:
@@ -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