Compare commits

...

2 Commits

4 changed files with 74 additions and 7 deletions

View File

@@ -1,4 +1,7 @@
# Changelog # Changelog
## v1.3.13
* [\#2358](https://github.com/bnb-chain/bsc/pull/2358) doc: add Feynman upgrade for mainnet
* [\#2335](https://github.com/bnb-chain/bsc/pull/2335) upgrade: update system contracts bytes code and hardfork time of Feynman upgrade
## v1.3.12 ## v1.3.12
BUGFIX BUGFIX

File diff suppressed because one or more lines are too long

View File

@@ -147,9 +147,8 @@ var (
// UnixTime: 1705996800 is January 23, 2024 8:00:00 AM UTC // UnixTime: 1705996800 is January 23, 2024 8:00:00 AM UTC
ShanghaiTime: newUint64(1705996800), ShanghaiTime: newUint64(1705996800),
KeplerTime: newUint64(1705996800), KeplerTime: newUint64(1705996800),
FeynmanTime: newUint64(1713419340),
// TODO FeynmanFixTime: newUint64(1713419340),
FeynmanTime: nil,
Parlia: &ParliaConfig{ Parlia: &ParliaConfig{
Period: 3, Period: 3,

View File

@@ -23,7 +23,7 @@ import (
const ( const (
VersionMajor = 1 // Major version component of the current release VersionMajor = 1 // Major version component of the current release
VersionMinor = 3 // Minor version component of the current release VersionMinor = 3 // Minor version component of the current release
VersionPatch = 12 // Patch version component of the current release VersionPatch = 13 // Patch version component of the current release
VersionMeta = "" // Version metadata to append to the version string VersionMeta = "" // Version metadata to append to the version string
) )