Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions erigon-lib/chain/snapcfg/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ package snapcfg
import (
_ "embed"
"encoding/json"
"fmt"
"path/filepath"
"slices"
"sort"
Expand Down Expand Up @@ -414,7 +413,6 @@ func MergeSteps(networkName string, snapType snaptype.Enum, fromBlock uint64) []
// KnownCfg return list of preverified hashes for given network, but apply whiteList filter if it's not empty
func KnownCfg(networkName string) *Cfg {
c, ok := knownPreverified[networkName]
fmt.Println(networkName, c, ok)
if !ok {
return newCfg(networkName, Preverified{})
}
Expand Down
1 change: 0 additions & 1 deletion turbo/snapshotsync/snapshotsync.go
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,6 @@ func WaitForDownloader(ctx context.Context, logPrefix string, headerchain, blobs
// send all hashes to the Downloader service
snapCfg := snapcfg.KnownCfg(cc.ChainName)
preverifiedBlockSnapshots := snapCfg.Preverified
fmt.Println(snapCfg)
downloadRequest := make([]services.DownloadRequest, 0, len(preverifiedBlockSnapshots))

blockPrune, historyPrune := computeBlocksToPrune(blockReader, prune)
Expand Down