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

difftreelog

fix yarn warns

Daniel Shiposha2023-01-26parent: #a560e8d.patch.diff
in: master

2 files changed

modifiedtests/src/benchmarks/mintFee/benchmark.tsdiffbeforeafterboth
--- a/tests/src/benchmarks/mintFee/benchmark.ts
+++ b/tests/src/benchmarks/mintFee/benchmark.ts
@@ -100,7 +100,7 @@
 
     const ethSigner = await helper.eth.createAccountWithBalance(donor, 100n);
     const ethReceiver = await helper.eth.createAccountWithBalance(donor, 5n);
-   
+
     let susbtrateCollection: UniqueNFTCollection | null;
     const createCollectionSubstrateFee = convertToTokens(
       await helper.arrange.calculcateFee({Substrate: donor.address}, async () => {
modifiedtests/src/burnItem.test.tsdiffbeforeafterboth
15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
1616
17import {IKeyringPair} from '@polkadot/types/types';17import {IKeyringPair} from '@polkadot/types/types';
18import {expect, itSub, Pallets, usingPlaygrounds} from './util';18import {expect, itSub, usingPlaygrounds} from './util';
1919
2020
21describe('integration test: ext. burnItem():', () => {21describe('integration test: ext. burnItem():', () => {
22 let donor: IKeyringPair;22 let donor: IKeyringPair;
23 let alice: IKeyringPair;23 let alice: IKeyringPair;
24 let bob: IKeyringPair;
2524
26 before(async () => {25 before(async () => {
27 await usingPlaygrounds(async (helper, privateKey) => {26 await usingPlaygrounds(async (helper, privateKey) => {
28 donor = await privateKey({filename: __filename});27 donor = await privateKey({filename: __filename});
29 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);28 [alice] = await helper.arrange.createAccounts([100n], donor);
30 });29 });
31 });30 });
3231