git.delta.rocks / unique-network / refs/commits / e3dab7122278

difftreelog

fix maintenance mode scheduler test

Daniel Shiposha2022-11-08parent: #df20080.patch.diff
in: master

1 file changed

modifiedtests/src/maintenanceMode.seqtest.tsdiffbeforeafterboth
169 const nftDuringMM = await collection.mintToken(bob);169 const nftDuringMM = await collection.mintToken(bob);
170 const nftAfterMM = await collection.mintToken(bob);170 const nftAfterMM = await collection.mintToken(bob);
171171
172 const scheduledIdBeforeMM = '0x' + '0'.repeat(31) + '0';172 const [
173 const scheduledIdDuringMM = '0x' + '0'.repeat(31) + '1';173 scheduledIdBeforeMM,
174 const scheduledIdBunkerThroughMM = '0x' + '0'.repeat(31) + '2';174 scheduledIdDuringMM,
175 const scheduledIdAttemptDuringMM = '0x' + '0'.repeat(31) + '3';175 scheduledIdBunkerThroughMM,
176 const scheduledIdAfterMM = '0x' + '0'.repeat(31) + '4';176 scheduledIdAttemptDuringMM,
177 scheduledIdAfterMM,
178 ] = await helper.arrange.makeScheduledIds(5);
177179
178 const blocksToWait = 6;180 const blocksToWait = 6;
179181