Skip to content

Commit

Permalink
Finalize cancun/napoli HF block number for polygon mainnet (#9674)
Browse files Browse the repository at this point in the history
Cherry pick PR #9603

Block number: 54876000 (March 20th, 2024 at around 10.30 AM UTC)

---------

Co-authored-by: Manav Darji <manavdarji.india@gmail.com>
  • Loading branch information
yperbasis and manav2401 committed Mar 11, 2024
1 parent f12e451 commit 125509e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion core/forkid/forkid_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ func TestCreation(t *testing.T) {
{3395000, 0, ID{Hash: checksumToBytes(0x27806576), Next: 14750000}}, // First Istanbul block
{14750000, 0, ID{Hash: checksumToBytes(0x66e26adb), Next: 23850000}}, // First Berlin block
{23850000, 0, ID{Hash: checksumToBytes(0x4f2f71cc), Next: 50523000}}, // First London block
{50523000, 0, ID{Hash: checksumToBytes(0xdc08865c), Next: 0}}, // First Agra block
{50523000, 0, ID{Hash: checksumToBytes(0xdc08865c), Next: 54876000}}, // First Agra block
{54876000, 0, ID{Hash: checksumToBytes(0xf097bc13), Next: 0}}, // First Napoli block
},
},
}
Expand Down
3 changes: 2 additions & 1 deletion params/chainspecs/bor-devnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"jaipurBlock": 0,
"delhiBlock": 0,
"indoreBlock": 0,
"agraBlock": 100
"agraBlock": 100,
"napoliBlock": 100
}
}
3 changes: 2 additions & 1 deletion params/chainspecs/bor-mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"jaipurBlock": 23850000,
"delhiBlock": 38189056,
"indoreBlock": 44934656,
"agraBlock": 50523000
"agraBlock": 50523000,
"napoliBlock": 54876000
}
}
2 changes: 1 addition & 1 deletion params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var (
const (
VersionMajor = 2 // Major version component of the current release
VersionMinor = 58 // Minor version component of the current release
VersionMicro = 1 // Patch version component of the current release
VersionMicro = 2 // Patch version component of the current release
VersionModifier = "" // Modifier component of the current release
VersionKeyCreated = "ErigonVersionCreated"
VersionKeyFinished = "ErigonVersionFinished"
Expand Down

0 comments on commit 125509e

Please sign in to comment.