Skip to content

Commit 24d6cbf

Browse files
author
Beau Shinkle
committed
yarn format:fix
1 parent a411524 commit 24d6cbf

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

simulation/wallets.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -300,10 +300,13 @@ function randomTransfer(wallet) {
300300
liveWallets.push(i)
301301
}
302302
}
303-
const transferCount = Math.min(liveWallets.length, Math.ceil(walletBalances[wallet] / WALLET_TRANSFER_MAX))
303+
const transferCount = Math.min(
304+
liveWallets.length,
305+
Math.ceil(walletBalances[wallet] / WALLET_TRANSFER_MAX)
306+
)
304307
const randomWallets = getRandomSample(liveWallets, transferCount)
305308
const transferAmount = walletBalances[wallet] / transferCount
306-
309+
307310
randomWallets.forEach((randomWallet) => {
308311
log(
309312
1,

0 commit comments

Comments
 (0)