Skip to content

Commit

Permalink
pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
djrtwo committed Jul 28, 2020
1 parent 235fb7e commit b529d47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions specs/phase0/beacon-chain.md
Original file line number Diff line number Diff line change
Expand Up @@ -1306,7 +1306,7 @@ def get_attesting_balance(state: BeaconState, attestations: Sequence[PendingAtte
```python
def process_justification_and_finalization(state: BeaconState) -> None:
# Initial FFG checkpoint values have a `0x00` stub for `root`.
# Skip updating FFG checkpoints in first two epochs to avoid corner cases that might result in modifying this stub.
# Skip FFG updates in the first two epochs to avoid corner cases that might result in modifying this stub.
if get_current_epoch(state) <= GENESIS_EPOCH + 1:
return

Expand Down Expand Up @@ -1514,7 +1514,7 @@ def get_attestation_deltas(state: BeaconState) -> Tuple[Sequence[Gwei], Sequence

```python
def process_rewards_and_penalties(state: BeaconState) -> None:
# No rewards are applied at end of `GENESIS_EPOCH` because rewards are for work done in the previous epoch
# No rewards are applied at the end of `GENESIS_EPOCH` because rewards are for work done in the previous epoch
if get_current_epoch(state) == GENESIS_EPOCH:
return

Expand Down

0 comments on commit b529d47

Please sign in to comment.