This pull request fixes a spacing issue in script.h where the definition for OP_TRUE was formatted without a space before the assignment operator. The only modification is changing:
- OP_TRUE=OP_1,
+ OP_TRUE = OP_1,
This update improves the code's readability and adheres to the project's style guidelines without affecting functionality.