From a3b8fbc4443829bfc133ed407c5e3865b4b9d400 Mon Sep 17 00:00:00 2001 From: CryptoManiac Date: Mon, 14 Jul 2014 03:28:37 +0400 Subject: [PATCH] Add OP_SMALLDATA handling to GetOpName --- src/script.cpp | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/script.cpp b/src/script.cpp index 15733a7..64208c5 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -244,6 +244,7 @@ const char* GetOpName(opcodetype opcode) // template matching params case OP_PUBKEYHASH : return "OP_PUBKEYHASH"; case OP_PUBKEY : return "OP_PUBKEY"; + case OP_SMALLDATA : return "OP_SMALLDATA"; case OP_INVALIDOPCODE : return "OP_INVALIDOPCODE"; default: -- 1.7.1