Make the OP_FALSE constant untyped.
This makes it consistent with the rest of the opcode constants.
This commit is contained in:
parent
6ae916bd37
commit
95cd1b97fa
1 changed files with 258 additions and 258 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue