Skip to content

Commit

Permalink
Updates folder configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
leeren committed Aug 18, 2024
1 parent a1ff718 commit fe7682a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
8 changes: 4 additions & 4 deletions cmd/utils/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -618,9 +618,9 @@ var (
Category: flags.MiscCategory,
}
IliadFlag = &cli.BoolFlag{
Name: "iliad",
Usage: "iliad test network: pre-configured proof-of-stake test network",
Category: flags.MiscCategory,
Name: "iliad",
Usage: "iliad test network: pre-configured proof-of-stake test network",
Category: flags.MiscCategory,
}

// RPC settings
Expand Down Expand Up @@ -1834,7 +1834,7 @@ func SetEthConfig(ctx *cli.Context, stack *node.Node, cfg *ethconfig.Config) {
SetDNSDiscoveryDefaults(cfg, params.GoerliGenesisHash)
case ctx.Bool(IliadFlag.Name):
if !ctx.IsSet(NetworkIdFlag.Name) {
cfg.NetworkId = 1723217281
cfg.NetworkId = 1723078116
}
cfg.Genesis = core.DefaultIliadGenesisBlock()
SetDNSDiscoveryDefaults(cfg, params.IliadGenesisHash)
Expand Down
2 changes: 1 addition & 1 deletion core/genesis_alloc.go

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions params/bootnodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,8 @@ var SepoliaBootnodes = []string{
// Iliad test network.
var IliadBootnodes = []string{
// Upstream bootnodes
"enode://5e7587609f641724d5ba7de6da94c4c95ccd22219c79e6c7b68b7779fc7e3ef0d02d59d7237cb3f524b432edde5d14d6251afb313d153391cc9bcf6cf4b0e146@44.214.162.88:30303",

"enode://42a60e0f30de311f9e38351901848bb78956f68131569cc1ff460113c948eb67df812da4998aab6c2ac0e10ef365648fd968996e68953df29e10370607a51d9e@50.18.191.26:30303",
"enode://5e85033276299eff126d0c86a42b76cbad98920b4f77ae894b8a52daffa558f36de1281beca96b71e67795955bf769ce6ab3e35af66790816b37ada3d9c2b09a@52.9.220.233:30303",
"enode://7f7685f85a6cfbdb5342ef977ae9d1c82dae4fa8d0f3b141c0c1bb86a01bbc7ac081aa336ff9b341b751f756d388ac4eabbd810e548b52dfb835de0c844bd8b9@54.241.155.73:30303",
}

// GoerliBootnodes are the enode URLs of the P2P bootstrap nodes running on the
Expand Down
2 changes: 1 addition & 1 deletion params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var (
HoleskyGenesisHash = common.HexToHash("0xb5f7f912443c940f21fd611f12828d75b534364ed9e95ca4e307729a4661bde4")
SepoliaGenesisHash = common.HexToHash("0x25a5cc106eea7138acab33231d7160d69cb777ee0c2c553fcddf5138993e6dd9")
GoerliGenesisHash = common.HexToHash("0xbf7e331f7f7c1dd2e05159666b3bf8bc7a8a3a9eb1d518969eab529dd9b88c1a")
IliadGenesisHash = common.HexToHash("0x47ca9ec3d82d73a707260c984b948b5f163dc78fd27c0703ca5541cbc218873d")
IliadGenesisHash = common.HexToHash("0xa9c221f6e4cbb302e48993a772ef0946403fd28b9195c570de8ea9381d47a245")
)

func newUint64(val uint64) *uint64 { return &val }
Expand Down

0 comments on commit fe7682a

Please sign in to comment.