From 1f0f73a61ebe94a6f8bd272060325402346988f8 Mon Sep 17 00:00:00 2001 From: forcodedancing Date: Thu, 13 Apr 2023 18:19:18 +0800 Subject: [PATCH] feat: enable bep171 upgrade on mainnet (#936) --- CHANGELOG.md | 4 ++++ asset/mainnet/app.toml | 2 ++ version/version.go | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa3fb1a1c..18fcc1bb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.10.10 +FEATURES +* [\#936](https://github.com/bnb-chain/node/pull/936) [BEP]: enable bep171 upgrade on mainnet #936 + ## v0.10.9 BUG FIX diff --git a/asset/mainnet/app.toml b/asset/mainnet/app.toml index fa13aa61f..b91f2b8dd 100644 --- a/asset/mainnet/app.toml +++ b/asset/mainnet/app.toml @@ -63,6 +63,8 @@ BEP153Height = 284376000 #Block height of BEP173 upgrade BEP173Height = 284376000 FixDoubleSignChainIdHeight = 9223372036854775807 +# Block height of BEP171 upgrade +BEP171Height = 310182000 [addr] # Bech32PrefixAccAddr defines the Bech32 prefix of an account's address diff --git a/version/version.go b/version/version.go index 393f20e17..133952b34 100644 --- a/version/version.go +++ b/version/version.go @@ -12,7 +12,7 @@ var ( Version string ) -const NodeVersion = "v0.10.9" +const NodeVersion = "v0.10.10" func init() { Version = fmt.Sprintf("BNB Beacon Chain Release: %s;", NodeVersion)