Update pyspec builder

This commit is contained in:
Hsiao-Wei Wang 2021-04-10 03:04:27 +08:00
parent c4c4dade27
commit 79230c5f68
No known key found for this signature in database
GPG Key ID: 1111A8A81778319E
1 changed files with 4 additions and 2 deletions

View File

@ -313,11 +313,13 @@ def get_pow_chain_head() -> PowBlock:
pass
def execution_state_transition(execution_state: ExecutionState, execution_payload: ExecutionPayload) -> None:
def execution_state_transition(execution_state_root: Bytes32,
execution_payload: ExecutionPayload,
timestamp: uint64) -> None:
pass
def produce_execution_payload(parent_hash: Bytes32) -> ExecutionPayload:
def produce_execution_payload(parent_hash: Hash32, timestamp: uint64) -> ExecutionPayload:
pass"""