From 2ce2aac0c89eac7ff6098cc2d0a4ad7f700f1d06 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Wed, 12 Jan 2022 15:57:27 +1100 Subject: [PATCH] Address "yet to" paragraph --- sync/optimistic.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sync/optimistic.md b/sync/optimistic.md index 6137579cb..f3f70ee2f 100644 --- a/sync/optimistic.md +++ b/sync/optimistic.md @@ -28,6 +28,10 @@ Let `optimistic_roots: Set[Root]` be the set of `hash_tree_root(block)` for all optimistically imported blocks which have yet to receive an `INVALID` or `VALID` designation from an execution engine. +Let `optimistic_roots: Set[Root]` be the set of `hash_tree_root(block)` for all +optimistically imported blocks which have only received a `SYNCING` designation +from an execution engine (i.e., they are not known to be `INVALID` or `VALID`). + ```python @dataclass class Store(object):