From 788a296371dfbedac5a074170be18ce9645ab33f Mon Sep 17 00:00:00 2001 From: 0xcary <0xcary.web3@gmail.com> Date: Tue, 19 Sep 2023 14:13:59 +0800 Subject: [PATCH 1/3] add Amazon hardfork hight --- params/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/config.go b/params/config.go index 20a6432fea1f..861851a26e04 100644 --- a/params/config.go +++ b/params/config.go @@ -128,7 +128,7 @@ var ( IshikariPatch001Block: big.NewInt(12153317), // Ishikari patch 002 IshikariPatch002Block: big.NewInt(12162886), - + AmazonBlock: big.NewInt(24217700), // Ishikari patch001 // Fix minor bugs found in testnet From 8ae614b8ec6c7b16da44ed7bdc8046bbadbc0d8f Mon Sep 17 00:00:00 2001 From: 0xcary <0xcary.web3@gmail.com> Date: Tue, 19 Sep 2023 14:33:24 +0800 Subject: [PATCH 2/3] update amazon hardfork hight --- params/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/config.go b/params/config.go index 861851a26e04..9b3d32c2fd06 100644 --- a/params/config.go +++ b/params/config.go @@ -128,7 +128,7 @@ var ( IshikariPatch001Block: big.NewInt(12153317), // Ishikari patch 002 IshikariPatch002Block: big.NewInt(12162886), - AmazonBlock: big.NewInt(24217700), + AmazonBlock: big.NewInt(25306677), // Ishikari patch001 // Fix minor bugs found in testnet From 524fd1b678119afb9af969b0d0409903010125e3 Mon Sep 17 00:00:00 2001 From: 0xcary <0xcary.web3@gmail.com> Date: Thu, 28 Sep 2023 14:33:41 +0800 Subject: [PATCH 3/3] add Amazon hardfork hight of mainnet --- params/config.go | 1 + params/version.go | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/params/config.go b/params/config.go index 9b3d32c2fd06..121b30904770 100644 --- a/params/config.go +++ b/params/config.go @@ -64,6 +64,7 @@ var ( IshikariBlock: big.NewInt(11171299), IshikariPatch001Block: big.NewInt(11171299), IshikariPatch002Block: big.NewInt(11171299), + AmazonBlock: big.NewInt(24766075), POSA: &POSAConfig{ Period: 3, Epoch: 100, diff --git a/params/version.go b/params/version.go index eb06dc95cf18..d7b624336422 100644 --- a/params/version.go +++ b/params/version.go @@ -21,10 +21,10 @@ import ( ) const ( - VersionMajor = 1 // Major version component of the current release - VersionMinor = 4 // Minor version component of the current release - VersionPatch = 0 // Patch version component of the current release - VersionMeta = "unstable" // Version metadata to append to the version string + VersionMajor = 1 // Major version component of the current release + VersionMinor = 4 // Minor 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 ) // Version holds the textual version string.