From c162a3cffbbd0f8faf715b3a3f200cd6b0f55c8e Mon Sep 17 00:00:00 2001 From: Dustin Xie Date: Wed, 25 Oct 2023 10:50:13 -0700 Subject: [PATCH] [genesis] set Redsea to activate at 11-05-2023 23:59pm UTC --- action/protocol/context.go | 4 ++-- action/protocol/execution/evm/evm_test.go | 4 ++-- blockchain/genesis/genesis.go | 6 ++++-- blockchain/genesis/heightupgrade_test.go | 6 +++--- 4 files changed, 11 insertions(+), 9 deletions(-) diff --git a/action/protocol/context.go b/action/protocol/context.go index dfef265c1f..78f903ad50 100644 --- a/action/protocol/context.go +++ b/action/protocol/context.go @@ -113,8 +113,8 @@ type ( ValidateSystemAction bool AllowCorrectChainIDOnly bool AddContractStakingVotes bool - SharedGasWithDapp bool FixContractStakingWeightedVotes bool + SharedGasWithDapp bool } // FeatureWithHeightCtx provides feature check functions. @@ -253,8 +253,8 @@ func WithFeatureCtx(ctx context.Context) context.Context { ValidateSystemAction: g.IsQuebec(height), AllowCorrectChainIDOnly: g.IsQuebec(height), AddContractStakingVotes: g.IsQuebec(height), - SharedGasWithDapp: g.IsToBeEnabled(height), FixContractStakingWeightedVotes: g.IsRedsea(height), + SharedGasWithDapp: g.IsToBeEnabled(height), }, ) } diff --git a/action/protocol/execution/evm/evm_test.go b/action/protocol/execution/evm/evm_test.go index 1dd3d89c34..1108dd1505 100644 --- a/action/protocol/execution/evm/evm_test.go +++ b/action/protocol/execution/evm/evm_test.go @@ -226,12 +226,12 @@ func TestConstantinople(t *testing.T) { }, { "io1pcg2ja9krrhujpazswgz77ss46xgt88afqlk6y", - 34838200, + 26704440, }, // after Redsea { action.EmptyAddress, - 34838201, + 26704441, }, { "io1pcg2ja9krrhujpazswgz77ss46xgt88afqlk6y", diff --git a/blockchain/genesis/genesis.go b/blockchain/genesis/genesis.go index 5815da515d..dcf7d4f382 100644 --- a/blockchain/genesis/genesis.go +++ b/blockchain/genesis/genesis.go @@ -71,7 +71,7 @@ func defaultConfig() Genesis { OkhotskBlockHeight: 21542761, PalauBlockHeight: 22991401, QuebecBlockHeight: 24838201, - RedseaBlockHeight: 34838201, + RedseaBlockHeight: 26704441, ToBeEnabledBlockHeight: math.MaxUint64, }, Account: Account{ @@ -239,7 +239,9 @@ type ( // 2. enable IIP-13 liquidity staking // 3. valiate system action layout QuebecBlockHeight uint64 `yaml:"quebecHeight"` - // RedseaBlockHeight is the start height to enable Shanghai EVM + // RedseaBlockHeight is the start height to + // 1. upgrade go-ethereum to Bellatrix release + // 2. correct weighted votes for contract staking bucket RedseaBlockHeight uint64 `yaml:"redseaHeight"` // ToBeEnabledBlockHeight is a fake height that acts as a gating factor for WIP features // upon next release, change IsToBeEnabled() to IsNextHeight() for features to be released diff --git a/blockchain/genesis/heightupgrade_test.go b/blockchain/genesis/heightupgrade_test.go index cccc4f3aea..02330d788b 100644 --- a/blockchain/genesis/heightupgrade_test.go +++ b/blockchain/genesis/heightupgrade_test.go @@ -57,8 +57,8 @@ func TestNewHeightChange(t *testing.T) { require.True(cfg.IsPalau(uint64(22991401))) require.False(cfg.IsQuebec(uint64(24838200))) require.True(cfg.IsQuebec(uint64(24838201))) - require.False(cfg.IsRedsea(uint64(34838200))) - require.True(cfg.IsRedsea(uint64(34838201))) + require.False(cfg.IsRedsea(uint64(26704440))) + require.True(cfg.IsRedsea(uint64(26704441))) require.Equal(cfg.PacificBlockHeight, uint64(432001)) require.Equal(cfg.AleutianBlockHeight, uint64(864001)) @@ -80,5 +80,5 @@ func TestNewHeightChange(t *testing.T) { require.Equal(cfg.OkhotskBlockHeight, uint64(21542761)) require.Equal(cfg.PalauBlockHeight, uint64(22991401)) require.Equal(cfg.QuebecBlockHeight, uint64(24838201)) - require.Equal(cfg.RedseaBlockHeight, uint64(34838201)) + require.Equal(cfg.RedseaBlockHeight, uint64(26704441)) }