Gloas serve post block state for finalized/justified state requests (#9092)

Co-Authored-By: Eitan Seri- Levi <eserilev@gmail.com>

Co-Authored-By: Pawan Dhananjay <pawandhananjay@gmail.com>
This commit is contained in:
Eitan Seri-Levi
2026-04-09 03:44:19 +09:00
committed by GitHub
parent 243eecc465
commit 2749e18d0e
3 changed files with 54 additions and 15 deletions

View File

@@ -125,7 +125,15 @@ impl fmt::Display for BlockId {
pub enum StateId {
Head,
Genesis,
/// Pre-gloas the finalized state is the checkpoint block state
/// advanced to the epoch boundary.
/// Post-gloas this state is always the checkpoint post-block state and is not advanced
/// to the epoch boundary.
Finalized,
/// Pre-gloas the justified state is the checkpoint block state
/// advanced to the epoch boundary.
/// Post-gloas this state is always the checkpoint post-block state and is not advanced
/// to the epoch boundary.
Justified,
Slot(Slot),
Root(Hash256),