update ExecutionEngine protocol arg references

This commit is contained in:
protolambda 2021-05-14 01:07:22 +02:00
parent ddc471bd7e
commit d3160ba23a
No known key found for this signature in database
GPG Key ID: EC89FDBB2B4C7623
2 changed files with 3 additions and 3 deletions

View File

@ -150,7 +150,7 @@ The following methods are added to the `ExecutionEngine` protocol for use in the
#### `new_block`
Verifies the given `ExecutionPayload` with respect to execution state transition, and persists changes if valid.
Verifies the given `execution_payload` with respect to execution state transition, and persists changes if valid.
The body of this function is implementation dependent.
The Consensus API may be used to implement this with an external execution engine.

View File

@ -43,8 +43,8 @@ The following methods are added to the `ExecutionEngine` protocol for use as a v
#### `assemble_block`
Produces a new instance of an execution payload, with the specified timestamp,
on top of the execution payload chain tip identified by `block_head`.
Produces a new instance of an execution payload, with the specified `timestamp`,
on top of the execution payload chain tip identified by `block_hash`.
The body of this function is implementation dependent.
The Consensus API may be used to implement this with an external execution engine.