Skip to content

Commit

Permalink
Change local and colosseum genesis hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
Djadih committed Jul 24, 2023
1 parent 84ab3e7 commit 6197fc1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/utils/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -1594,7 +1594,7 @@ func SetEthConfig(ctx *cli.Context, stack *node.Node, cfg *ethconfig.Config) {
SetDNSDiscoveryDefaults(cfg, params.ProgpowColosseumGenesisHash)
}
}
if !ctx.GlobalBool(ColosseumFlag.Name) {
if !ctx.GlobalBool(LocalFlag.Name) {
cfg.Genesis.Nonce = ctx.GlobalUint64(GenesisNonceFlag.Name)
}
}
Expand Down
8 changes: 4 additions & 4 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ import (
// Genesis hashes to enforce below configs on.
var (
// Progpow GenesisHashes
ProgpowColosseumGenesisHash = common.HexToHash("0x937e935af7be23cee3a138dcc0e1a0ba1ccf2c9d085d144d4fb2e6fbd54fdd67")
ProgpowColosseumGenesisHash = common.HexToHash("0x3d2c4cc684a7b2c7764031058b457cdf09b946a62c7f3d6628f64386e7692d24")
ProgpowGardenGenesisHash = common.HexToHash("0x8975f8760d317524559986d595058d4d66c05d62e0eda1d740cdee56a25788a5")
ProgpowOrchardGenesisHash = common.HexToHash("0x5627aca8194b46ed071f92746ecf975542b12ce406905d715b4be8f044749956")
ProgpowLocalGenesisHash = common.HexToHash("0x9e7149a4f5ff07675e0e7881f004cd0dc1f5a28bb9ba8c4de86794ba6fe80b60")
ProgpowLocalGenesisHash = common.HexToHash("0x7f594e88d6c93a00680840a855b7c9349218751cc344562dacb43a63eec02d93")
ProgpowGalenaGenesisHash = common.HexToHash("0xe0a395a3fcd7ecbb28dd66eeceab2fb40db01a2bfbf9e5fbc5b93269104df19a")

// Blake3GenesisHashes
Blake3PowColosseumGenesisHash = common.HexToHash("0x5746089cbee3cde719c3d0599e31504793028c68e5df7acff956e917f72866f5")
Blake3PowColosseumGenesisHash = common.HexToHash("0xe6e0ff26dafbb1ff849b965fc300ebc9eee2708686943030d958dc4cc4b6c0ea")
Blake3PowGardenGenesisHash = common.HexToHash("0xdee75a7b24237d07f15392d7d5319a9421f838d84b9a6e6a8d1a4d74365ff2de")
Blake3PowOrchardGenesisHash = common.HexToHash("0x418ea8cd5f17277e4bb94cba7170a494fc53df23b915ed42a8fe9f6052a4327b")
Blake3PowLocalGenesisHash = common.HexToHash("0x9b747199047097790a4e376e4682ec682f7575d8fb07021e0e9d95e25dcdc140")
Blake3PowLocalGenesisHash = common.HexToHash("0x6181f4781316452abf66aaafa44568a4e9f56bb10c276c9d7b3964efea4fbc56")
Blake3PowGalenaGenesisHash = common.HexToHash("0xdee75a7b24237d07f15392d7d5319a9421f838d84b9a6e6a8d1a4d74365ff2de")
)

Expand Down

0 comments on commit 6197fc1

Please sign in to comment.