diff options
author | Matt Corallo <git@bluematt.me> | 2013-01-18 13:55:18 -0500 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2013-01-18 13:55:18 -0500 |
commit | 192cc910ec7cade1d0dce7f3b111e7fc7720e607 (patch) | |
tree | 80ec8fa7dccf8c48f17f5ef0edd6ab4d81be742a /src/script.cpp | |
parent | 28b80e6065fb3ada78a6ea49faf2912beb59ca27 (diff) |
Replace 520 constant with MAX_SCRIPT_ELEMENT_SIZE
Diffstat (limited to 'src/script.cpp')
-rw-r--r-- | src/script.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script.cpp b/src/script.cpp index 70adf1f9dc..45ac8335dc 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -340,7 +340,7 @@ bool EvalScript(vector<vector<unsigned char> >& stack, const CScript& script, co // if (!script.GetOp(pc, opcode, vchPushValue)) return false; - if (vchPushValue.size() > 520) + if (vchPushValue.size() > MAX_SCRIPT_ELEMENT_SIZE) return false; if (opcode > OP_16 && ++nOpCount > 201) return false; @@ -670,7 +670,7 @@ bool EvalScript(vector<vector<unsigned char> >& stack, const CScript& script, co valtype& vch2 = stacktop(-1); vch1.insert(vch1.end(), vch2.begin(), vch2.end()); popstack(stack); - if (stacktop(-1).size() > 520) + if (stacktop(-1).size() > MAX_SCRIPT_ELEMENT_SIZE) return false; } break; |