Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ export function WalletBatchLimitsTester() {
// Create array with 'count' messages
const messages = Array(count)
.fill(null)
.map(() => ({
.map((_, i) => ({
// Send to user's own wallet address in non-bounceable format
address: userAddress,
// Small amount to send in nanoTON (0.00001 TON = 10000 nanoTON)
amount: '10000'
amount: (10000 + i).toString()
}));

return {
Expand Down