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 there are many (like 100) packets to be relayed (result of getPendingPackets), they are all sent in one transaction (in receivePackets). The auto-gas simulation then fails once the simulation hits the block gas limit.
The text was updated successfully, but these errors were encountered:
Ah, yes, we definitely need to break them into groups.
Also handle the case when one of them fails or uses too much gas (this will happen more with ICA), such that we don't keep trying it and blocking others.
A lot of these edges to make it robust enough for the wild.
If there are many (like 100) packets to be relayed (result of
getPendingPackets
), they are all sent in one transaction (inreceivePackets
). The auto-gas simulation then fails once the simulation hits the block gas limit.The text was updated successfully, but these errors were encountered: