Skip to content
Merged
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
5 changes: 0 additions & 5 deletions execution/commitment/keys_nibbles.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,6 @@ func commonPrefixLen(b1, b2 []byte) int {
return i
}

// splits each byte in key slice onto 2 nibbles in the resulting slice
func splitOntoHexNibbles(key, nibblized []byte) []byte { // nolint:unused
return nibblized
}

// compactKey takes a slice of nibbles and compacts them into the original byte slice.
// It returns an error if the input contains invalid nibbles (values > 0xF).
func compactKey(nibbles []byte) ([]byte, error) {
Expand Down
Loading