difftreelog
fix yarn warns
in: master
2 files changed
tests/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 () => {
tests/src/burnItem.test.tsdiffbeforeafterboth15// 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/>.161617import {IKeyringPair} from '@polkadot/types/types';17import {IKeyringPair} from '@polkadot/types/types';18import {expect, itSub, Pallets, usingPlaygrounds} from './util';18import {expect, itSub, usingPlaygrounds} from './util';1919202021describe('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;252426 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