From f64e9cf11092a8a78bdeef749c4df7c844dc87f9 Mon Sep 17 00:00:00 2001 From: PraetorP Date: Mon, 06 Feb 2023 06:59:19 +0000 Subject: [PATCH] fix: abi `mintBulk` --- --- a/tests/src/benchmarks/mintFee/benchmark.ts +++ b/tests/src/benchmarks/mintFee/benchmark.ts @@ -1035,7 +1035,7 @@ res['mintBulk'] = await helper.arrange.calculcateFeeGas( {Ethereum: ethSigner}, - () => evmContract.methods.mintBulk([{field_0: ethSigner, field_1: 1}]).send(), + () => evmContract.methods.mintBulk([{to: ethSigner, amount: 1}]).send(), ); res['mintBulk'].substrate = convertToTokens((await helper.arrange.calculcateFee( -- gitstuff