Make the OP_FALSE constant untyped.

This makes it consistent with the rest of the opcode constants.
This commit is contained in:
Dave Collins 2014-08-13 00:32:16 -05:00
parent 6ae916bd37
commit 95cd1b97fa

View file

@ -36,7 +36,7 @@ type opcode struct {
// in bitcoind and in most if not all other references and software related to
// handling BTC scripts.
const (
OP_FALSE byte = 0 // AKA OP_0
OP_FALSE = 0 // AKA OP_0
OP_0 = 0
OP_DATA_1 = 1
OP_DATA_2 = 2