From 52ec766df329c90a0b05a2b04f3cae99108b6921 Mon Sep 17 00:00:00 2001 From: Fahrrader Date: Thu, 09 Jun 2022 08:27:01 +0000 Subject: [PATCH] fix(test): createCollection now fully uses privateKeyWrapper --- --- a/tests/src/createCollection.test.ts +++ b/tests/src/createCollection.test.ts @@ -89,8 +89,8 @@ }); it('New collection is not external', async () => { - await usingApi(async api => { - const alice = privateKey('//Alice'); + await usingApi(async (api, privateKeyWrapper) => { + const alice = privateKeyWrapper('//Alice'); const tx = api.tx.unique.createCollectionEx({ }); const events = await submitTransactionAsync(alice, tx); const result = getCreateCollectionResult(events); -- gitstuff