mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 05:11:02 +00:00
13ca339e4a
One more try to make this test robust from a resource perspective. --------- Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> Co-authored-by: Javier Viola <javier@parity.io>
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
async function run(nodeName, networkInfo, args) {
|
|
const wsUri = networkInfo.nodesByName[nodeName].wsUri;
|
|
const api = await zombie.connect(wsUri);
|
|
|
|
let para = Number(args[0]);
|
|
let core = Number(args[1]);
|
|
console.log(`Assigning para ${para} to core ${core}`);
|
|
|
|
await zombie.util.cryptoWaitReady();
|
|
|
|
// account to submit tx
|
|
const keyring = new zombie.Keyring({ type: "sr25519" });
|
|
const alice = keyring.addFromUri("//Alice");
|
|
|
|
await new Promise(async (resolve, reject) => {
|
|
const unsub = await api.tx.sudo
|
|
.sudo(api.tx.coretime.assignCore(core, 0, [[{ task: para }, 57600]], null))
|
|
.signAndSend(alice, ({ status, isError }) => {
|
|
if (status.isInBlock) {
|
|
console.log(
|
|
`Transaction included at blockhash ${status.asInBlock}`,
|
|
);
|
|
} else if (status.isFinalized) {
|
|
console.log(
|
|
`Transaction finalized at blockHash ${status.asFinalized}`,
|
|
);
|
|
unsub();
|
|
return resolve();
|
|
} else if (isError) {
|
|
console.log(`Transaction error`);
|
|
reject(`Transaction error`);
|
|
}
|
|
});
|
|
});
|
|
|
|
return 0;
|
|
}
|
|
|
|
module.exports = { run };
|