diff --git a/txscript/opcode.go b/txscript/opcode.go index 069b91ac5..4f63f4fd5 100644 --- a/txscript/opcode.go +++ b/txscript/opcode.go @@ -1156,7 +1156,7 @@ func opcodeCheckSequenceVerify(op *parsedOpcode, vm *Engine) error { // standard 4-byte scriptNum would only support up to a maximum of // 2^31-1. Thus, a 5-byte scriptNum is used here since it will support // up to 2^39-1 which allows sequences beyond the current sequence - // limit. TODO: Understand this + // limit. // // PopByteArray is used here instead of PopInt because we do not want // to be limited to a 4-byte integer for reasons specified above.