From 705814b1ab72f3f25bef5230bd0c4dbaa0bc1f2a Mon Sep 17 00:00:00 2001 From: Andrew Ashikhmin <34320705+yperbasis@users.noreply.github.com> Date: Tue, 30 Jan 2024 10:45:47 +0100 Subject: [PATCH] Mumbai: add Napoli block (#9346) Cherry pick PR #9345 --------- Co-authored-by: Arpit Temani --- core/forkid/forkid_test.go | 3 ++- params/chainspecs/mumbai.json | 3 ++- params/version.go | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/core/forkid/forkid_test.go b/core/forkid/forkid_test.go index 179c2dd0e..41c52891b 100644 --- a/core/forkid/forkid_test.go +++ b/core/forkid/forkid_test.go @@ -158,7 +158,8 @@ func TestCreation(t *testing.T) { {2722000, 0, ID{Hash: checksumToBytes(0x8647df30), Next: 13996000}}, // First Istanbul block {13996000, 0, ID{Hash: checksumToBytes(0x06cc1179), Next: 22640000}}, // First Berlin block {22640000, 0, ID{Hash: checksumToBytes(0x9adf950e), Next: 41874000}}, // First London block - {41874000, 0, ID{Hash: checksumToBytes(0x0c015a91), Next: 0}}, // First Agra block + {41874000, 0, ID{Hash: checksumToBytes(0x0c015a91), Next: 45648608}}, // First Agra block + {45648608, 0, ID{Hash: checksumToBytes(0x0f2316c1), Next: 0}}, // First Napoli block }, }, // Amoy test cases diff --git a/params/chainspecs/mumbai.json b/params/chainspecs/mumbai.json index 3a61eb1ac..0222a381b 100644 --- a/params/chainspecs/mumbai.json +++ b/params/chainspecs/mumbai.json @@ -58,6 +58,7 @@ "jaipurBlock": 22770000, "delhiBlock": 29638656, "indoreBlock": 37075456, - "agraBlock": 41874000 + "agraBlock": 41874000, + "napoliBlock": 45648608 } } diff --git a/params/version.go b/params/version.go index 6d1ca420d..368bfc842 100644 --- a/params/version.go +++ b/params/version.go @@ -33,7 +33,7 @@ var ( const ( VersionMajor = 2 // Major version component of the current release VersionMinor = 57 // Minor version component of the current release - VersionMicro = 2 // Patch version component of the current release + VersionMicro = 3 // Patch version component of the current release VersionModifier = "" // Modifier component of the current release VersionKeyCreated = "ErigonVersionCreated" VersionKeyFinished = "ErigonVersionFinished"