Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ssz): adjust the initial offset of variables-length fields #1492

Merged
merged 7 commits into from
Jun 18, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
remove comment
  • Loading branch information
TropicalDog17 committed Jun 15, 2024
commit efbb77f75c3e3cb69c0197294b42bf6c5d3ea1ba
3 changes: 0 additions & 3 deletions mod/primitives/pkg/ssz/v2/lib/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,6 @@ func InterleaveOffsets(
for i := range len(variableParts) {
variableOffsets[i] = ssz.MarshalU32(uint32(offsetSum))
TropicalDog17 marked this conversation as resolved.
Show resolved Hide resolved
offsetSum += variableLengths[i]
// #nosec:G701 // converting an int of max is 4294967295 to uint64 max
// of 2147483647.
// Wont realisticially overflow.
}

fixedPartsWithOffsets := make([][]byte, len(fixedParts))
Expand Down