diff options
| author | mb300sd <mb300sd@git> | 2015-12-14 14:21:34 -0500 |
|---|---|---|
| committer | mb300sd <mb300sd@git> | 2015-12-15 02:01:45 -0500 |
| commit | 37d271d7cce44885f835292ffe99b54399b014d6 (patch) | |
| tree | 4d9a7d48884c4bbeeb0cb3e91c3b8ae79b5a4fe8 /src/script/script.h | |
| parent | Merge pull request #7125 (diff) | |
| download | discoin-37d271d7cce44885f835292ffe99b54399b014d6.tar.xz discoin-37d271d7cce44885f835292ffe99b54399b014d6.zip | |
Rename OP_NOP2 to OP_CHECKLOCKTIMEVERIFY.
Diffstat (limited to 'src/script/script.h')
| -rw-r--r-- | src/script/script.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/script.h b/src/script/script.h index 3650957fc..7a37b66cc 100644 --- a/src/script/script.h +++ b/src/script/script.h @@ -162,8 +162,8 @@ enum opcodetype // expansion OP_NOP1 = 0xb0, - OP_NOP2 = 0xb1, - OP_CHECKLOCKTIMEVERIFY = OP_NOP2, + OP_CHECKLOCKTIMEVERIFY = 0xb1, + OP_NOP2 = OP_CHECKLOCKTIMEVERIFY, OP_NOP3 = 0xb2, OP_NOP4 = 0xb3, OP_NOP5 = 0xb4, |