-
Notifications
You must be signed in to change notification settings - Fork 973
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2858 from mkalinin/justified-to-safe-block
Bellatrix: pass justified as a safe block
- Loading branch information
Showing
4 changed files
with
59 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Fork Choice -- Safe Block | ||
|
||
## Table of contents | ||
<!-- TOC --> | ||
<!-- START doctoc generated TOC please keep comment here to allow auto update --> | ||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> | ||
|
||
- [Introduction](#introduction) | ||
- [`get_safe_beacon_block_root`](#get_safe_beacon_block_root) | ||
- [`get_safe_execution_payload_hash`](#get_safe_execution_payload_hash) | ||
|
||
<!-- END doctoc generated TOC please keep comment here to allow auto update --> | ||
<!-- /TOC --> | ||
|
||
## Introduction | ||
|
||
Under honest majority and certain network synchronicity assumptions | ||
there exist a block that is safe from re-orgs. Normally this block is | ||
pretty close to the head of canonical chain which makes it valuable | ||
to expose a safe block to users. | ||
|
||
This section describes an algorithm to find a safe block. | ||
|
||
## `get_safe_beacon_block_root` | ||
|
||
```python | ||
def get_safe_beacon_block_root(store: Store) -> Root: | ||
# Use most recent justified block as a stopgap | ||
return store.justified_checkpoint.root | ||
``` | ||
*Note*: Currently safe block algorithm simply returns `store.justified_checkpoint.root` | ||
and is meant to be improved in the future. | ||
|
||
## `get_safe_execution_payload_hash` | ||
|
||
```python | ||
def get_safe_execution_payload_hash(store: Store) -> Hash32: | ||
safe_block_root = get_safe_beacon_block_root(store) | ||
safe_block = store.blocks[safe_block_root] | ||
|
||
# Return Hash32() if no payload is yet justified | ||
if compute_epoch_at_slot(safe_block.slot) >= BELLATRIX_FORK_EPOCH: | ||
return safe_block.body.execution_payload.block_hash | ||
else: | ||
return Hash32() | ||
``` | ||
|
||
*Note*: This helper uses beacon block container extended in [Bellatrix](../specs/bellatrix/beacon-chain.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters