increase wallet funding on prepare

This commit is contained in:
woodser 2023-11-01 11:16:52 -04:00
parent 36742991ee
commit eae9002ae4

View File

@ -3261,7 +3261,7 @@ async function prepareForTrading(numTrades: number, ...havenods: HavenoClient[])
} }
// fund wallets // fund wallets
const tradeAmount = BigInt("250000000000"); const tradeAmount = BigInt("500000000000");
const wallets: moneroTs.MoneroWallet[] = []; const wallets: moneroTs.MoneroWallet[] = [];
for (const havenod of havenods) wallets.push(await getWallet(havenod)); for (const havenod of havenods) wallets.push(await getWallet(havenod));
await fundOutputs(wallets, tradeAmount * BigInt("2"), numTrades); await fundOutputs(wallets, tradeAmount * BigInt("2"), numTrades);