From 33b9011691787163e46d3eda5fce0cddf9df2419 Mon Sep 17 00:00:00 2001 From: Fahrrader Date: Wed, 08 Jun 2022 13:50:31 +0000 Subject: [PATCH] fix(test): new collection is not external --- --- a/tests/src/createCollection.test.ts +++ b/tests/src/createCollection.test.ts @@ -88,12 +88,10 @@ }); }); - it('Create new collection is not read only', async () => { + it('New collection is not external', async () => { await usingApi(async api => { const alice = privateKey('//Alice'); - const tx = api.tx.unique.createCollectionEx({ - readOnly: true, - }); + const tx = api.tx.unique.createCollectionEx({ }); const events = await submitTransactionAsync(alice, tx); const result = getCreateCollectionResult(events); -- gitstuff