Skip to content

Commit

Permalink
schedule mainnet hardfork block for v1.6.0 (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
tak1827 authored Nov 11, 2024
1 parent 509fe63 commit a9325a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/oasys/deployments.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var deploymentSets = map[common.Hash]map[uint64]deploymentSet{
1529980: deploymentSet{deployments9},
1892000: deploymentSet{deployments10},
4089588: deploymentSet{deployments11},
9999998: deploymentSet{deployments12}, // TODO
5095900: deploymentSet{deployments12},
},
params.OasysTestnetGenesisHash: {
1: deploymentSet{deployments0},
Expand Down
2 changes: 1 addition & 1 deletion contracts/oasys/oasys_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1152,7 +1152,7 @@ func TestDeploy(t *testing.T) {
{1529980, []deployFn{_deployments9}},
{1892000, []deployFn{_deployments10}},
{4089588, []deployFn{_deployments11}},
{9999998, []deployFn{_deployments12}},
{5095900, []deployFn{_deployments12}},
},
},
{
Expand Down
2 changes: 1 addition & 1 deletion params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ func (c *ChainConfig) OasysFastFinalityEnabledBlock() *big.Int {
return nil
}
if c.ChainID.Cmp(OasysMainnetChainConfig.ChainID) == 0 {
return big.NewInt(9999999)
return big.NewInt(5095900) // Mon Nov 18 2024 17:00:00 GMT+0900
}
if c.ChainID.Cmp(OasysTestnetChainConfig.ChainID) == 0 {
return big.NewInt(4958700) // Thu Oct 31 2024 18:00:00 GMT+0900
Expand Down

0 comments on commit a9325a2

Please sign in to comment.