1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00

add OP_EQUAL to txapi parser

This commit is contained in:
Pavol Rusnak 2014-04-02 19:18:14 +02:00
parent e9dbedfd33
commit c3f74420a4

View File

@ -28,6 +28,8 @@ def opcode_serialize(opcode):
return '\x76'
if opcode == 'OP_HASH160':
return '\xa9'
if opcode == 'OP_EQUAL':
return '\x87'
if opcode == 'OP_EQUALVERIFY':
return '\x88'
if opcode == 'OP_CHECKSIG':