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
Not everyone many need all the sighashes offered. Using cargo features we can selectively enable various instructions, preserving program space.
The only "scalable" categorization system I can think of is grouping instructions by the first letter of the instruction name. This way you can include all instructions that start with the letter d using:
sighashdb = {version = "0.1.5, features = ["d"]}
The text was updated successfully, but these errors were encountered:
Overview
Not everyone many need all the sighashes offered. Using cargo features we can selectively enable various instructions, preserving program space.
The only "scalable" categorization system I can think of is grouping instructions by the first letter of the instruction name. This way you can include all instructions that start with the letter
d
using:The text was updated successfully, but these errors were encountered: