Skip to content

Commit

Permalink
To make ColumnIndex an alias of CellID
Browse files Browse the repository at this point in the history
  • Loading branch information
hwwhww committed Jun 6, 2024
1 parent f5e44c2 commit 8c4a42c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def get_spec(file_name: Path, preset: Dict[str, str], config: Dict[str, str], pr

if not _is_constant_id(name):
# Check for short type declarations
if value.startswith(("uint", "Bytes", "ByteList", "Union", "Vector", "List", "ByteVector")):
if value.startswith(("uint", "Bytes", "ByteList", "Union", "Vector", "List", "ByteVector", "CellID")):
custom_types[name] = value
continue

Expand Down
2 changes: 1 addition & 1 deletion specs/_features/eip7594/das-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The following values are (non-configurable) constants used throughout the specif
| Name | SSZ equivalent | Description |
| - | - | - |
| `RowIndex` | `uint64` | Row identifier in the matrix of cells |
| `ColumnIndex` | `uint64` | Column identifier in the matrix of cells |
| `ColumnIndex` | `CellID` | Column identifier in the matrix of cells |

## Configuration

Expand Down

0 comments on commit 8c4a42c

Please sign in to comment.