difftreelog
tests: use forceSetBalance
in: master
1 file changed
tests/src/util/playgrounds/unique.tsdiffbeforeafterboth2526 return this.ethBalanceGroup.getEthereum(address);2526 return this.ethBalanceGroup.getEthereum(address);2527 }2527 }252825282529 async setBalanceSubstrate(signer: TSigner, address: TSubstrateAccount, amount: bigint, reservedAmount = 0n) {2529 async setBalanceSubstrate(signer: TSigner, address: TSubstrateAccount, amount: bigint) {2530 await this.helper.executeExtrinsic(signer, 'api.tx.balances.setBalance', [address, amount, reservedAmount], true);2530 await this.helper.executeExtrinsic(signer, 'api.tx.balances.forceSetBalance', [address, amount], true);2531 }2531 }253225322533 /**2533 /**