diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-07-08 11:26:01 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-07-08 11:39:10 +0200 |
| commit | ff46dd4a3457c321aef14f9778094c9db9b00083 (patch) | |
| tree | c9fbd49c2335ddb271c1ae1370ddc4cbc5f771c7 /src/script/script.cpp | |
| parent | Merge #8303: [Doc] Update bips.md for CSV softfork. (diff) | |
| parent | Rename NOP3 to CHECSEQUENCEVERIFY in rpc tests (diff) | |
| download | discoin-ff46dd4a3457c321aef14f9778094c9db9b00083.tar.xz discoin-ff46dd4a3457c321aef14f9778094c9db9b00083.zip | |
Merge #7540: Rename OP_NOP3 to OP_CHECKSEQUENCEVERIFY
18c975c Rename NOP3 to CHECSEQUENCEVERIFY in rpc tests (BtcDrak)
14d0130 Rename OP_NOP3 to OP_CHECKSEQUENCEVERIFY (BtcDrak)
Diffstat (limited to 'src/script/script.cpp')
| -rw-r--r-- | src/script/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/script.cpp b/src/script/script.cpp index da551c23e..ddf677556 100644 --- a/src/script/script.cpp +++ b/src/script/script.cpp @@ -132,7 +132,7 @@ const char* GetOpName(opcodetype opcode) // expanson case OP_NOP1 : return "OP_NOP1"; case OP_CHECKLOCKTIMEVERIFY : return "OP_CHECKLOCKTIMEVERIFY"; - case OP_NOP3 : return "OP_NOP3"; + case OP_CHECKSEQUENCEVERIFY : return "OP_CHECKSEQUENCEVERIFY"; case OP_NOP4 : return "OP_NOP4"; case OP_NOP5 : return "OP_NOP5"; case OP_NOP6 : return "OP_NOP6"; |