Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configs/mainnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,4 @@ MAX_BYTES_PER_INCLUSION_LIST: 8192
# Blob Scheduling
# ---------------------------------------------------------------

BLOB_SCHEDULE:
BLOB_SCHEDULE: []
2 changes: 1 addition & 1 deletion configs/minimal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -191,4 +191,4 @@ MAX_BYTES_PER_INCLUSION_LIST: 8192
# Blob Scheduling
# ---------------------------------------------------------------

BLOB_SCHEDULE:
BLOB_SCHEDULE: []
5 changes: 1 addition & 4 deletions pysetup/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,10 +384,7 @@ def parse_config_vars(conf: Dict[str, str]) -> Dict[str, Union[str, List[Dict[st
"""
out: Dict[str, Union[str, List[Dict[str, str]]]] = dict()
for k, v in conf.items():
if v == "":
# When a list of records is empty
out[k] = []
elif isinstance(v, list):
if isinstance(v, list):
# A special case for list of records
out[k] = v
elif isinstance(v, str) and (
Expand Down