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 error string for this guy is "exceeded maximum number of instructions allowed ({1}) at instruction #{0}"). When you're executing a Solana transaction, it's confusing to encounter this error because you're typically thinking of Solana transaction instructions, not BPF instructions, and it looks like you tried to submit a transaction with 200_000 instructions
The text was updated successfully, but these errors were encountered:
That is a good point. Also, we can probably take out the maximum number as that is reported together with the actual consumption in the program runtime anyway. Otherwise there is the additional confusion that instruction #{0} does not report the consumption but index of the instruction at which the limit was reached.
The error string for this guy is
"exceeded maximum number of instructions allowed ({1}) at instruction #{0}")
. When you're executing a Solana transaction, it's confusing to encounter this error because you're typically thinking of Solana transaction instructions, not BPF instructions, and it looks like you tried to submit a transaction with 200_000 instructionsThe text was updated successfully, but these errors were encountered: