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
All builtins only consume their const default cost (when declare_process_instruction!(...)), but compute-budget allocates 200K CU for each builtin ix; Need to gather transaction's builtin instructions details, in order to allocate correct budget for builtins.
Proposed Solution
collect builtin instructions cost info while iterating through instructions (that collects compute-budget instruction raw data), gathered builtin instructions details can be stored in InstructionDetails, then be sanitized and used to build correct compute-budget (in separate feature gated issue)
The text was updated successfully, but these errors were encountered:
Problem
All builtins only consume their const default cost (when
declare_process_instruction!(...)
), butcompute-budget
allocates 200K CU for each builtin ix; Need to gather transaction's builtin instructions details, in order to allocate correct budget for builtins.Proposed Solution
The text was updated successfully, but these errors were encountered: