Fix a comment typo in execute_payload

This commit is contained in:
terence tsao
2021-09-27 21:19:03 -07:00
committed by GitHub
parent cc92c2a629
commit 6d81440b10

View File

@@ -257,7 +257,7 @@ The Engine API may be used to implement them with an external execution engine.
```python
def execute_payload(self: ExecutionEngine, execution_payload: ExecutionPayload) -> bool:
"""
Returns ``True`` iff ``execution_payload`` is valid with respect to ``self.execution_state``.
Returns ``True`` if ``execution_payload`` is valid with respect to ``self.execution_state``.
"""
...
```