Skip to content

Commit

Permalink
update hard-fork information, update version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanyan committed Jun 27, 2022
1 parent 0507906 commit c4a493a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions consensus/chaos/systemcontract/hardfork_gravitation.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ import (
)

var (
addressListAdmin = common.HexToAddress("0x")
addressListAdminTestnet = common.HexToAddress("0x")
addressListAdmin = common.HexToAddress("0x6f326b326fea7d1786e45ff25adb67c8532b5234")
addressListAdminTestnet = common.HexToAddress("0x148c4f33de145c11bdcfbb0f188dfc8fa75d3568")

onChainDaoAdmin = common.HexToAddress("0x")
onChainDaoAdminTestnet = common.HexToAddress("0x")
onChainDaoAdmin = common.HexToAddress("0x93b54cbed48d92fb891ded0d02336dd1e2faa627")
onChainDaoAdminTestnet = common.HexToAddress("0x91e8bafe89c485645beed0c26fabc79a98a0ce2e")

AdminDevnet common.Address
)
Expand Down
4 changes: 3 additions & 1 deletion params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ var (
BerlinBlock: big.NewInt(0),
LondonBlock: big.NewInt(0),
HeliocentrismBlock: big.NewInt(0),
GravitationBlock: big.NewInt(829915),
Chaos: &ChaosConfig{
Period: 3,
Epoch: 200,
Expand All @@ -81,7 +82,8 @@ var (
MuirGlacierBlock: nil,
BerlinBlock: big.NewInt(0),
LondonBlock: big.NewInt(0),
HeliocentrismBlock: big.NewInt(10000000), // TODO
HeliocentrismBlock: big.NewInt(1404110),
GravitationBlock: big.NewInt(1404110),
Chaos: &ChaosConfig{
Period: 3,
Epoch: 200,
Expand Down
4 changes: 2 additions & 2 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (

const (
VersionMajor = 1 // Major version component of the current release
VersionMinor = 0 // Minor version component of the current release
VersionPatch = 1 // Patch version component of the current release
VersionMinor = 1 // Minor version component of the current release
VersionPatch = 0 // Patch version component of the current release
VersionMeta = "stable" // Version metadata to append to the version string
)

Expand Down

0 comments on commit c4a493a

Please sign in to comment.