From 8afb146fd3b5371ddf8b66f8c9cfb35f73d2d90b Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Fri, 30 Sep 2022 10:47:24 +0000 Subject: [PATCH] fix: remove redundant await --- --- a/tests/src/eth/tokenProperties.test.ts +++ b/tests/src/eth/tokenProperties.test.ts @@ -11,7 +11,7 @@ await collection.addAdmin(alice, {Ethereum: caller}); const address = helper.ethAddress.fromCollectionId(collection.collectionId); - const contract = await helper.ethNativeContract.collection(address, 'nft', caller); + const contract = helper.ethNativeContract.collection(address, 'nft', caller); await contract.methods.setTokenPropertyPermission('testKey', mutable, collectionAdmin, tokenOwner).send({from: caller}); -- gitstuff