Skip to content

Commit

Permalink
correctly identify key areas
Browse files Browse the repository at this point in the history
Make sure developers know what portions of the code are required by VBK implementation.
  • Loading branch information
xagau authored and Warchant committed Apr 7, 2020
1 parent 9907b6e commit dd2c5d5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/script/script.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,15 @@ const char* GetOpName(opcodetype opcode)
case OP_NOP8 : return "OP_NOP8";
case OP_NOP9 : return "OP_NOP9";
case OP_NOP10 : return "OP_NOP10";

// VBK -->
case OP_CHECKATV : return "OP_CHECKATV";
case OP_CHECKVTB : return "OP_CHECKVTB";
case OP_CHECKPOP : return "OP_CHECKPOP";
case OP_POPBTCHEADER : return "OP_POPBTCHEADER";
case OP_POPVBKHEADER : return "OP_POPVBKHEADER";

// <-- VBK

case OP_INVALIDOPCODE : return "OP_INVALIDOPCODE";

default:
Expand Down

0 comments on commit dd2c5d5

Please sign in to comment.