diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2014-10-08 16:29:45 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2014-10-25 03:03:16 -0700 |
commit | d752ba86c1872f64a4641cf77008826d32bde65f (patch) | |
tree | 07728ee7eee5a8dacc3d31496ef4b9b204f9f06e /src/script/script.cpp | |
parent | 65e4e8427d900b27f579dc12af6c74b3ec628286 (diff) |
Add SCRIPT_VERIFY_SIGPUSHONLY (BIP62 rule 2)
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 3e19d0c2bf..bbcfe9dfdd 100644 --- a/src/script/script.cpp +++ b/src/script/script.cpp @@ -230,7 +230,7 @@ bool CScript::IsPushOnly() const return false; // Note that IsPushOnly() *does* consider OP_RESERVED to be a // push-type opcode, however execution of OP_RESERVED fails, so - // it's not relevant to P2SH as the scriptSig would fail prior to + // it's not relevant to P2SH/BIP62 as the scriptSig would fail prior to // the P2SH special validation code being executed. if (opcode > OP_16) return false; |