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
The fold* functions in iterators.ts should either be tail-recursive or use an iterative approach that leverages a stack data structure instead of the call stack to avoid stack overflow issues with large contracts. This has become a problem since #155 was completed, as we now have larger contracts.
The text was updated successfully, but these errors were encountered:
The
fold*
functions initerators.ts
should either be tail-recursive or use an iterative approach that leverages a stack data structure instead of the call stack to avoid stack overflow issues with large contracts. This has become a problem since #155 was completed, as we now have larger contracts.The text was updated successfully, but these errors were encountered: