diff --git a/CHANGELOG.md b/CHANGELOG.md index cad02fdc6..a8043f554 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.10.16 +FEATURES +* [\#977](https://github.com/bnb-chain/node/pull/977) [BEP] asset: add bep255 upgrade height for mainnet + ## v0.10.15 FEATURES * [\#956](https://github.com/bnb-chain/node/pull/956) [BEP] feat: implement bep255 diff --git a/asset/mainnet/app.toml b/asset/mainnet/app.toml index 91beaf351..d802464d1 100644 --- a/asset/mainnet/app.toml +++ b/asset/mainnet/app.toml @@ -67,6 +67,8 @@ FixDoubleSignChainIdHeight = 9223372036854775807 BEP171Height = 310182000 #Block height of BEP126 upgrade BEP126Height = 321213000 +# Block height of BEP255 upgrade +BEP255Height = 328088888 [addr] # Bech32PrefixAccAddr defines the Bech32 prefix of an account's address diff --git a/version/version.go b/version/version.go index 9a7f282b7..83bb5e65a 100644 --- a/version/version.go +++ b/version/version.go @@ -12,7 +12,7 @@ var ( Version string ) -const NodeVersion = "v0.10.15" +const NodeVersion = "v0.10.16" func init() { Version = fmt.Sprintf("BNB Beacon Chain Release: %s;", NodeVersion)