Skip to content
This repository has been archived by the owner on Jan 5, 2021. It is now read-only.

Build 2.6.1 release upon 2.5.3 #87

Merged
merged 1 commit into from
Mar 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.3
2.6.1
8 changes: 4 additions & 4 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ var (
UBIForkBlock: big.NewInt(1200001),
DAOForkBlock: big.NewInt(36028797018963967),
DAOForkSupport: false,
EIP150Block: big.NewInt(36028797018963967),
EIP150Block: big.NewInt(2222222),
EIP150Hash: common.HexToHash("0x"),
EIP155Block: big.NewInt(36028797018963967),
EIP158Block: big.NewInt(36028797018963967),
ByzantiumBlock: big.NewInt(36028797018963967),
EIP155Block: big.NewInt(2222222),
EIP158Block: big.NewInt(2222222),
ByzantiumBlock: big.NewInt(2222222),

Ethash: new(EthashConfig),
}
Expand Down
6 changes: 3 additions & 3 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import (

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

// Version holds the textual version string.
Expand Down