You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (amounts[amounts.length - 1] > amountInMax)
revert ExcessiveInputAmount();
may need change to
if (amounts[0] > amountInMax)
revert ExcessiveInputAmount();
thx for the tutorial, benefits a lot
The text was updated successfully, but these errors were encountered:
thx for the tutorial, benefits a lot
The text was updated successfully, but these errors were encountered: