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 want to achieve this inlining to save space in a logic signature, which has a size limit of 1000 bytes, while keeping the code organized within functions.
In addition to saving program bytecode size, this would also help reduce opcode cost. Subroutine calls (assuming they have variables) require at least a callsub, proto, and retsub. In scenarios where a set of operations is frequently repeated, this can quickly add up.
Problem
I want to achieve this inlining to save space in a logic signature, which has a size limit of 1000 bytes, while keeping the code organized within functions.
Solution
Example
Relevant link
Discord convo
The text was updated successfully, but these errors were encountered: