Skip to content

Commit

Permalink
Fix comment indents
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhauner committed Jan 12, 2022
1 parent 18c32e0 commit 6af3d4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sync/optimistic.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6af3d4c

Please sign in to comment.