mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
V2.1.1 (#1582)
* added Bhilai and Prague block for mainnet (#1581) * params: version bump to v2.1.1
This commit is contained in:
commit
c522a93628
4 changed files with 7 additions and 1 deletions
|
|
@ -15,11 +15,13 @@
|
|||
"londonBlock": 23850000,
|
||||
"shanghaiBlock": 50523000,
|
||||
"cancunBlock": 54876000,
|
||||
"pragueBlock": 73440256,
|
||||
"bor": {
|
||||
"jaipurBlock": 23850000,
|
||||
"delhiBlock": 38189056,
|
||||
"indoreBlock": 44934656,
|
||||
"ahmedabadBlock": 62278656,
|
||||
"bhilaiBlock": 73440256,
|
||||
"stateSyncConfirmationDelay": {
|
||||
"44934656": 128
|
||||
},
|
||||
|
|
|
|||
|
|
@ -29,11 +29,13 @@ var mainnetBor = &Chain{
|
|||
LondonBlock: big.NewInt(23850000),
|
||||
ShanghaiBlock: big.NewInt(50523000),
|
||||
CancunBlock: big.NewInt(54876000),
|
||||
PragueBlock: big.NewInt(73440256),
|
||||
Bor: ¶ms.BorConfig{
|
||||
JaipurBlock: big.NewInt(23850000),
|
||||
DelhiBlock: big.NewInt(38189056),
|
||||
IndoreBlock: big.NewInt(44934656),
|
||||
AhmedabadBlock: big.NewInt(62278656),
|
||||
BhilaiBlock: big.NewInt(73440256),
|
||||
StateSyncConfirmationDelay: map[string]uint64{
|
||||
"44934656": 128,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -390,11 +390,13 @@ var (
|
|||
LondonBlock: big.NewInt(23850000),
|
||||
ShanghaiBlock: big.NewInt(50523000),
|
||||
CancunBlock: big.NewInt(54876000),
|
||||
PragueBlock: big.NewInt(73440256),
|
||||
Bor: &BorConfig{
|
||||
JaipurBlock: big.NewInt(23850000),
|
||||
DelhiBlock: big.NewInt(38189056),
|
||||
IndoreBlock: big.NewInt(44934656),
|
||||
AhmedabadBlock: big.NewInt(62278656),
|
||||
BhilaiBlock: big.NewInt(73440256),
|
||||
StateSyncConfirmationDelay: map[string]uint64{
|
||||
"44934656": 128,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ import (
|
|||
const (
|
||||
VersionMajor = 2 // Major version component of the current release
|
||||
VersionMinor = 1 // Minor version component of the current release
|
||||
VersionPatch = 0 // Patch version component of the current release
|
||||
VersionPatch = 1 // Patch version component of the current release
|
||||
VersionMeta = "" // Version metadata to append to the version string
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue