diff --git a/trie/bintrie/internal_node.go b/trie/bintrie/internal_node.go index 5253772c57..a78daaf021 100644 --- a/trie/bintrie/internal_node.go +++ b/trie/bintrie/internal_node.go @@ -17,10 +17,10 @@ package bintrie import ( + "crypto/sha256" "errors" "fmt" - "crypto/sha256" "github.com/ethereum/go-ethereum/common" ) diff --git a/trie/bintrie/stem_node.go b/trie/bintrie/stem_node.go index 91f2482fdf..07ef5d7e74 100644 --- a/trie/bintrie/stem_node.go +++ b/trie/bintrie/stem_node.go @@ -18,12 +18,12 @@ package bintrie import ( "bytes" + "crypto/sha256" "errors" "fmt" "slices" "github.com/ethereum/go-ethereum/common" - "crypto/sha256" ) // StemNode represents a group of `NodeWith` values sharing the same stem.