cashscript
cashscript copied to clipboard
type consistency with boolean comparisons
bool b, bool a;
a == b
should compile to OP_NUMEQUAL (rather than OP_EQUAL)
a != b
should compile to OP_NUMNOTEQUAL (rather than OP_EQUAL OP_NOT)