Fix comment indents

This commit is contained in:
Paul Hauner 2022-01-13 07:13:10 +11:00
parent 18c32e0a5e
commit 6af3d4cbfc
No known key found for this signature in database
GPG Key ID: 5E2CFF9B75FA63DF

View File

@ -47,7 +47,7 @@ def is_optimistic(store: Store, block: BeaconBlock) -> bool:
```python
def latest_verified_ancestor(store: Store, block: BeaconBlock) -> BeaconBlock:
# It is assumed that the `block` parameter is never an INVALID block.
# It is assumed that the `block` parameter is never an INVALID block.
while True:
if not is_optimistic(store, block) or block.parent_root == Root():
return block