diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 64dcd40b..e930b59e 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -1693,7 +1693,7 @@ func SetEthConfig(ctx *cli.Context, stack *node.Node, cfg *ethconfig.Config) { SetDNSDiscoveryDefaults(cfg, params.TestNetGenesisHash) case ctx.GlobalBool(DevNetFlag.Name): if !ctx.GlobalIsSet(NetworkIdFlag.Name) { - cfg.NetworkId = 51891 + cfg.NetworkId = 51892 } cfg.Genesis = core.DefaultDevNetGenesisBlock() SetDNSDiscoveryDefaults(cfg, params.DevNetGenesisHash) diff --git a/params/config.go b/params/config.go index 5199733d..a8216b1b 100644 --- a/params/config.go +++ b/params/config.go @@ -250,7 +250,7 @@ var ( // DevnetChainConfig is the chain parameters to run a node on the wormholes developer network. DevnetChainConfig = &ChainConfig{ - ChainID: big.NewInt(51891), + ChainID: big.NewInt(51892), HomesteadBlock: big.NewInt(0), //DAOForkBlock: big.NewInt(1_920_000), //DAOForkSupport: true, diff --git a/params/version.go b/params/version.go index c93c81a6..2cf7f21c 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 0 // Major version component of the current release VersionMinor = 10 // Minor version component of the current release - VersionPatch = 0 // Patch version component of the current release + VersionPatch = 1 // Patch version component of the current release VersionMeta = "stable" // Version metadata to append to the version string )