|
April 01, 2014, 03:45:34 AM |
|
No... I'm looking straight at the code now.
0x03 and 0x53 both push the value '3' onto the stack. They are the same.
0x4d aka OP_PUSHDATA2 means 'the next 2 bytes contain a number of following bytes to be pushed onto the stack' and 0x04e aka OP_PUSHDATA4 is the same thing for 4 bytes.
If you wanted to push a 3-byte number onto the stack as a unit, you'd write
OP_PUSHDATA1, 0x03, DATA1, DATA2, DATA3
|