Mumbai: add Napoli block (#9346)

Cherry pick PR #9345

---------

Co-authored-by: Arpit Temani <temaniarpit27@gmail.com>
This commit is contained in:
Andrew Ashikhmin 2024-01-30 10:45:47 +01:00 committed by GitHub
parent ffb6b83c09
commit 705814b1ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -58,6 +58,7 @@
"jaipurBlock": 22770000,
"delhiBlock": 29638656,
"indoreBlock": 37075456,
"agraBlock": 41874000
"agraBlock": 41874000,
"napoliBlock": 45648608
}
}

View File

@ -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"