From 2b19f70818eecb516c7b9c272c1654a5bdad4ddc Mon Sep 17 00:00:00 2001 From: Varunram Date: Mon, 19 Mar 2018 15:21:59 +0530 Subject: [PATCH] 2.6.1 Musicoin HF commit --- VERSION | 2 +- params/config.go | 8 ++++---- params/version.go | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/VERSION b/VERSION index aedc15bb0..6a6a3d8e3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.5.3 +2.6.1 diff --git a/params/config.go b/params/config.go index 120687679..7dff24500 100644 --- a/params/config.go +++ b/params/config.go @@ -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), } diff --git a/params/version.go b/params/version.go index 03f6c1f2f..ff1f1269d 100644 --- a/params/version.go +++ b/params/version.go @@ -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.