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
I'd expect a smart contracting VM to have certain pre-defined limits that would control deep call routines and also memory limits because when I try to find the 60th Fibonacci number, this program hangs and most likely runs out of memory https://play.gno.land/p/FOEYk0mBinL
I think one way to reduce security blast radiuses is to particularly look at OpCall and for each function call graph, determine when it has run out of the allowed maximum recursion depth.
I'd expect a smart contracting VM to have certain pre-defined limits that would control deep call routines and also memory limits because when I try to find the 60th Fibonacci number, this program hangs and most likely runs out of memory https://play.gno.land/p/FOEYk0mBinL
I think one way to reduce security blast radiuses is to particularly look at OpCall and for each function call graph, determine when it has run out of the allowed maximum recursion depth.
Solidity has a max recursion depth of 1024 per https://docs.soliditylang.org/en/latest/introduction-to-smart-contracts.html#message-calls
The text was updated successfully, but these errors were encountered: