Skip to content

Commit

Permalink
bug: ExecutionContext had a logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
afk11 committed Dec 11, 2019
1 parent c9505db commit ebfb8b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Script/Interpreter/ExecutionContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function setTapLeafHash(BufferInterface $leafHash)

public function hasTapLeaf(): bool
{
return null === $this->tapLeafHash;
return null !== $this->tapLeafHash;
}

/**
Expand Down

0 comments on commit ebfb8b7

Please sign in to comment.