From 5fd35005c809663800c3ddfdfaff3fd4332e437c Mon Sep 17 00:00:00 2001 From: Antz0x0z <47379684+Antz0x0z@users.noreply.github.com> Date: Tue, 23 Mar 2021 07:46:27 +0000 Subject: [PATCH] Update getCreateCollectionResult() Fix helpers.ts, event 'CollectionCreated' --- --- a/tests/src/util/helpers.ts +++ b/tests/src/util/helpers.ts @@ -118,7 +118,7 @@ // console.log(` ${phase}: ${section}.${method}:: ${data}`); if (method == 'ExtrinsicSuccess') { success = true; - } else if ((section == 'nft') && (method == 'Created')) { + } else if ((section == 'nft') && (method == 'CollectionCreated')) { collectionId = parseInt(data[0].toString()); } }); -- gitstuff