From 2abc6090f5f88fcd9aecbbd8e5799108fb3f314a Mon Sep 17 00:00:00 2001 From: AJoX Date: Wed, 29 Oct 2025 20:44:12 +0100 Subject: [PATCH] Update keys_nibbles.go --- execution/commitment/keys_nibbles.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/execution/commitment/keys_nibbles.go b/execution/commitment/keys_nibbles.go index cfa33c82764..fc73770deb6 100644 --- a/execution/commitment/keys_nibbles.go +++ b/execution/commitment/keys_nibbles.go @@ -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) {