fix linter

This commit is contained in:
Guillaume Ballet 2025-08-27 14:50:47 +02:00
parent f93d68e778
commit 931b8fb13e
2 changed files with 2 additions and 2 deletions

View file

@ -17,10 +17,10 @@
package bintrie package bintrie
import ( import (
"crypto/sha256"
"errors" "errors"
"fmt" "fmt"
"crypto/sha256"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
) )

View file

@ -18,12 +18,12 @@ package bintrie
import ( import (
"bytes" "bytes"
"crypto/sha256"
"errors" "errors"
"fmt" "fmt"
"slices" "slices"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
"crypto/sha256"
) )
// StemNode represents a group of `NodeWith` values sharing the same stem. // StemNode represents a group of `NodeWith` values sharing the same stem.