Skip to content

Commit ebfb8b7

Browse files
committed
bug: ExecutionContext had a logic error
1 parent c9505db commit ebfb8b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Script/Interpreter/ExecutionContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function setTapLeafHash(BufferInterface $leafHash)
7474

7575
public function hasTapLeaf(): bool
7676
{
77-
return null === $this->tapLeafHash;
77+
return null !== $this->tapLeafHash;
7878
}
7979

8080
/**

0 commit comments

Comments
 (0)