From 6d81440b10432c43fe7de5d79c8f3cc42368480f Mon Sep 17 00:00:00 2001 From: terence tsao Date: Mon, 27 Sep 2021 21:19:03 -0700 Subject: [PATCH 1/2] Fix a comment typo in `execute_payload` --- specs/merge/beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/merge/beacon-chain.md b/specs/merge/beacon-chain.md index 56476cedd..659f4c630 100644 --- a/specs/merge/beacon-chain.md +++ b/specs/merge/beacon-chain.md @@ -257,7 +257,7 @@ The Engine API may be used to implement them with an external execution engine. ```python def execute_payload(self: ExecutionEngine, execution_payload: ExecutionPayload) -> bool: """ - Returns ``True`` iff ``execution_payload`` is valid with respect to ``self.execution_state``. + Returns ``True`` if ``execution_payload`` is valid with respect to ``self.execution_state``. """ ... ``` From 2ea262f7d6485ad26a8185768d909c60eebf19a9 Mon Sep 17 00:00:00 2001 From: terence tsao Date: Tue, 28 Sep 2021 07:53:29 -0700 Subject: [PATCH 2/2] Update specs/merge/beacon-chain.md Co-authored-by: Hsiao-Wei Wang --- specs/merge/beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/merge/beacon-chain.md b/specs/merge/beacon-chain.md index 659f4c630..02ea1b24f 100644 --- a/specs/merge/beacon-chain.md +++ b/specs/merge/beacon-chain.md @@ -257,7 +257,7 @@ The Engine API may be used to implement them with an external execution engine. ```python def execute_payload(self: ExecutionEngine, execution_payload: ExecutionPayload) -> bool: """ - Returns ``True`` if ``execution_payload`` is valid with respect to ``self.execution_state``. + Return ``True`` if and only if ``execution_payload`` is valid with respect to ``self.execution_state``. """ ... ```