mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-09 04:21:20 +00:00
5aab794c9b
* Process BlockHeadersMsg * Print invalidations * Print reason for parent-child mismatch * Fix off by one error * Fix ExtendDown * Replace tipLimiter with an LRU cache * Retrieve 256 headers at a time * Hard coding of tips, process new block hashes * extract headers * Write hard-coded headers into a file * Add total difficulty * Insert hard coded headers * Log i * Initiate download from hard-coded anchors * Print the state of anchors * Add hard-coded headers as tips * Spare the peers * Refine LRU caching of tips * Print length of anchor trees * Limit requests to 192 headers * range error fix * Print better, retain at least one tip in the LRU cache * Skip duplicate line ends * Throttle requests, display peer name * Back off, intermediate tip queue * Print block header timestamp * Better logging * Log less * More logging of evictions * Fix queue push * Fix queue pop * Exclude duplicate tips * Fix tips logging * Fix moving * Add port flag * Check headers * Print extra * Add mixDigest to serialisation * Fix difficulty in hard-coded headers * Avoid duplicate header requests * Update peer characteristics on NewBlockMsg * Remove backoff when peer responds * Fix tests * Fix lint * Fix lint
30 lines
942 B
Go
30 lines
942 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/ledgerwatch/turbo-geth/cmd/headers/download"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
filesDir string // Directory when the files should be stored
|
|
bufferSize int // Size of buffer in MiB
|
|
natSetting string // NAT setting
|
|
port int // Listening port
|
|
)
|
|
|
|
func init() {
|
|
downloadCmd.Flags().StringVar(&filesDir, "filesdir", "", "path to directory where files will be stored")
|
|
downloadCmd.Flags().IntVar(&bufferSize, "buffersize", 512, "size o the buffer in MiB")
|
|
downloadCmd.Flags().StringVar(&natSetting, "nat", "any", "NAT port mapping mechanism (any|none|upnp|pmp|extip:<IP>)")
|
|
downloadCmd.Flags().IntVar(&port, "port", 30303, "p2p port number")
|
|
rootCmd.AddCommand(downloadCmd)
|
|
}
|
|
|
|
var downloadCmd = &cobra.Command{
|
|
Use: "download",
|
|
Short: "Download headers backwards",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return download.Download(natSetting, filesDir, port)
|
|
},
|
|
}
|