Sfoglia il codice sorgente

eth/downloader: fix typo in comment (#22019)

ucwong 4 anni fa
parent
commit
61469cfeaf
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      eth/downloader/modes.go

+ 1 - 1
eth/downloader/modes.go

@@ -25,7 +25,7 @@ type SyncMode uint32
 const (
 	FullSync  SyncMode = iota // Synchronise the entire blockchain history from full blocks
 	FastSync                  // Quickly download the headers, full sync only at the chain
-	SnapSync                  // Download the chain and the state via compact snashots
+	SnapSync                  // Download the chain and the state via compact snapshots
 	LightSync                 // Download only the headers and terminate afterwards
 )