Skip to content

Commit

Permalink
use boolean instead of bool in forkchoice
Browse files Browse the repository at this point in the history
  • Loading branch information
potuz committed Jul 2, 2024
1 parent 1508f51 commit 78e15ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ MARKDOWN_FILES = $(wildcard $(SPEC_DIR)/*/*.md) \
$(wildcard $(SPEC_DIR)/_features/*/*/*.md) \
$(wildcard $(SSZ_DIR)/*.md)

ALL_EXECUTABLE_SPEC_NAMES = phase0 altair bellatrix capella deneb electra whisk eip6800
ALL_EXECUTABLE_SPEC_NAMES = phase0 altair bellatrix capella deneb electra whisk eip6800 eipxxxx
# The parameters for commands. Use `foreach` to avoid listing specs again.
COVERAGE_SCOPE := $(foreach S,$(ALL_EXECUTABLE_SPEC_NAMES), --cov=eth2spec.$S.$(TEST_PRESET_TYPE))
PYLINT_SCOPE := $(foreach S,$(ALL_EXECUTABLE_SPEC_NAMES), ./eth2spec/$S)
Expand Down
4 changes: 2 additions & 2 deletions specs/_features/eipxxxx/fork-choice.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Auxiliary class to consider `(block, slot, bool)` LMD voting
class ChildNode(Container):
root: Root
slot: Slot
is_payload_present: bool
is_payload_present: boolean
```

## Helpers
Expand Down Expand Up @@ -108,7 +108,7 @@ class Store(object):
execution_payload_states: Dict[Root, BeaconState] = field(default_factory=dict) # [New in EIP-XXXX]
ptc_vote: Dict[Root, Vector[uint8, PTC_SIZE]] = field(default_factory=dict) # [New in EIP-XXXX]
payload_withhold_boost_root: Root # [New in EIP-XXXX]
payload_withhold_boost_full: bool # [New in EIP-XXXX]
payload_withhold_boost_full: boolean # [New in EIP-XXXX]
payload_reveal_boost_root: Root # [New in EIP-XXXX]
```

Expand Down

0 comments on commit 78e15ec

Please sign in to comment.