Skip to content

Commit

Permalink
Increase batch size for send_random_nft_to_each
Browse files Browse the repository at this point in the history
  • Loading branch information
Vyryn committed Sep 20, 2024
1 parent 1d06df1 commit a84af89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions greenwiz/utils/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,8 +415,8 @@ def random_id():
],
)
actions.append(action)
# Send in batches of 10
if len(actions) > 9:
# Send in batches of 20
if len(actions) > 19:
try:
result = await bot.wax_con.execute_transaction(
actions, sender_ac=DEFAULT_WAX_COLLECTION
Expand Down

0 comments on commit a84af89

Please sign in to comment.