From 797fec697130ffe76b19830b189d1e70afcdb36f Mon Sep 17 00:00:00 2001 From: Maksandre Date: Mon, 10 Oct 2022 10:51:20 +0000 Subject: [PATCH] Increase the donor balance to 1M --- --- a/tests/src/util/playgrounds/feedAlices.ts +++ b/tests/src/util/playgrounds/feedAlices.ts @@ -38,11 +38,11 @@ const account = await privateKey({filename: f, ignoreFundsPresence: true}); const aliceBalance = await helper.balance.getSubstrate(account.address); - if (aliceBalance < 7500n * oneToken) { + if (aliceBalance < 100_000n * oneToken) { tx.push(helper.executeExtrinsic( alice, 'api.tx.balances.transfer', - [account.address, 15000n * oneToken], + [account.address, 1_000_000n * oneToken], true, {nonce: nonce + balanceGrantedCounter++}, ).then(() => true).catch(() => {console.error(`Transaction to ${path.basename(f)} registered as failed. Strange.`); return false;})); -- gitstuff