diff --git a/params/config.go b/params/config.go index dd6bee1df..8da900795 100644 --- a/params/config.go +++ b/params/config.go @@ -321,6 +321,7 @@ var ( Morph203Time: NewUint64(0), ViridianTime: NewUint64(1761544800), EmeraldTime: NewUint64(1766988000), + JadeForkTime: NewUint64(1774418400), TerminalTotalDifficulty: big.NewInt(0), Morph: MorphConfig{ UseZktrie: true, @@ -353,6 +354,7 @@ var ( Morph203Time: NewUint64(1747029600), ViridianTime: NewUint64(1762149600), EmeraldTime: NewUint64(1767765600), + JadeForkTime: NewUint64(1775628000), TerminalTotalDifficulty: big.NewInt(0), Morph: MorphConfig{ UseZktrie: true, diff --git a/params/version.go b/params/version.go index 7e41072e4..b4dbcaf3e 100644 --- a/params/version.go +++ b/params/version.go @@ -23,8 +23,8 @@ import ( const ( VersionMajor = 2 // Major version component of the current release - VersionMinor = 1 // Minor version component of the current release - VersionPatch = 2 // Patch version component of the current release + VersionMinor = 2 // Minor version component of the current release + VersionPatch = 0 // Patch version component of the current release VersionMeta = "mainnet" // Version metadata to append to the version string )