Skip to content

Commit b50bb75

Browse files
committed
minor script fix
1 parent 963546f commit b50bb75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Script/Script.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ public function __toString()
7979
}
8080

8181
/**
82-
* @return array
83-
* @throws \Exception
82+
* @return Operation[]
83+
* @throws ScriptException
8484
*/
8585
public function parse(): array
8686
{
@@ -103,7 +103,7 @@ public function parse(): array
103103

104104
if ($code == Opcodes::OP_0) {
105105
$data = '';
106-
} elseif ($code >= 0x01 && $code <= 0x4b) {
106+
} elseif ($code > Opcodes::OP_0 && $code < Opcodes::OP_PUSHDATA1) {
107107
$data = $stream->read($code);
108108
$size = $code;
109109
} elseif ($code >= Opcodes::OP_PUSHDATA1 && $code <= Opcodes::OP_PUSHDATA4) {

0 commit comments

Comments
 (0)