Skip to content

Commit 1967112

Browse files
committed
Fix typo in comment
1 parent aa7c92e commit 1967112

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/script/interpreter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -842,7 +842,7 @@ bool EvalScript(std::vector<std::vector<unsigned char> >& stack, const CScript&
842842
if (length > MAX_SCRIPT_ELEMENT_SIZE)
843843
length = MAX_SCRIPT_ELEMENT_SIZE;
844844

845-
// start + length cannot overflow because of the restrictions immediately abo
845+
// start + length cannot overflow because of the restrictions immediately above
846846
if (start + length > vch1.size()) {
847847
length = CScriptNum(vch1.size()) - start;
848848
}

0 commit comments

Comments
 (0)