Skip to content

Commit

Permalink
set default config for network id to 66666 (ethereum#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
hadv authored May 31, 2019
1 parent f497f99 commit 1297df9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eth/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ import (

// DefaultConfig contains default settings for use on the Ethereum main net.
var DefaultConfig = Config{
SyncMode: downloader.FastSync,
SyncMode: downloader.FullSync,
Ethash: ethash.Config{
CacheDir: "ethash",
CachesInMem: 2,
CachesOnDisk: 3,
DatasetsInMem: 1,
DatasetsOnDisk: 2,
},
NetworkId: 1,
NetworkId: 66666,
LightPeers: 100,
DatabaseCache: 512,
TrieCleanCache: 256,
Expand Down

0 comments on commit 1297df9

Please sign in to comment.