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
const signaturePackageSize = 10; for (let i = 0; i <= addresses.length / signaturePackageSize; i++) {
The for loop that creates packages for the API tests if length <= signaturePackSize where it should only test less than <, otherwise it will have an exception on any multiple of 10 and create an extra empty package and try and push that to the API
The text was updated successfully, but these errors were encountered:
const signaturePackageSize = 10; for (let i = 0; i <= addresses.length / signaturePackageSize; i++) {
The for loop that creates packages for the API tests if
length <= signaturePackSize
where it should only test less than<
, otherwise it will have an exception on any multiple of 10 and create an extra empty package and try and push that to the APIThe text was updated successfully, but these errors were encountered: