From 2bbc232ad8c49cd551511998b79763deff059324 Mon Sep 17 00:00:00 2001 From: Mikhail Kalinin Date: Tue, 22 Feb 2022 16:50:39 +0600 Subject: [PATCH] Engine API: random -> prevRandao --- src/engine/specification.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/specification.md b/src/engine/specification.md index 42c123a4..f5b1cc90 100644 --- a/src/engine/specification.md +++ b/src/engine/specification.md @@ -139,7 +139,7 @@ This structure maps on the [`ExecutionPayload`](https://github.com/ethereum/cons - `stateRoot`: `DATA`, 32 Bytes - `receiptsRoot`: `DATA`, 32 Bytes - `logsBloom`: `DATA`, 256 Bytes -- `random`: `DATA`, 32 Bytes +- `prevRandao`: `DATA`, 32 Bytes - `blockNumber`: `QUANTITY`, 64 Bits - `gasLimit`: `QUANTITY`, 64 Bits - `gasUsed`: `QUANTITY`, 64 Bits @@ -162,7 +162,7 @@ This structure encapsulates the fork choice state. The fields are encoded as fol This structure contains the attributes required to initiate a payload build process in the context of an `engine_forkchoiceUpdated` call. The fields are encoded as follows: - `timestamp`: `QUANTITY`, 64 Bits - value for the `timestamp` field of the new payload -- `random`: `DATA`, 32 Bytes - value for the `random` field of the new payload +- `prevRandao`: `DATA`, 32 Bytes - value for the `prevRandao` field of the new payload - `suggestedFeeRecipient`: `DATA`, 20 Bytes - suggested value for the `feeRecipient` field of the new payload ### PayloadStatusV1