Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update BEP153Height of testnet #884

Merged
merged 5 commits into from
Aug 31, 2022
Merged
Show file tree
Hide file tree
Changes from 4 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
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Changelog

## 0.10.1
## 0.10.2
FEATURES
* [\#878](https://github.com/bnb-chain/node/pull/878) [CI] Add ci script to docker image
* [\#878](https://github.com/bnb-chain/node/pull/878) [CI] Add ci script to build docker image
* [\#879](https://github.com/bnb-chain/node/pull/879) [Staking] Implement BEP153: Native Staking on BSC

## 0.10.1
IMPROVEMENTS
* [\#879](https://github.com/bnb-chain/node/pull/879) [Staking] Implement BEP153: Native Staking on BSC
* [\#882](https://github.com/bnb-chain/node/pull/882) [DEX] Add BEP151 Mainnet Height

## 0.10.0
IMPROVEMENTS
Expand Down
2 changes: 2 additions & 0 deletions asset/testnet/app.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ EnableAccountScriptsForCrossChainTransferHeight = 7841000
BEP128Height = 23551600
#Block height of BEP151 upgrade
BEP151Height = 28250000
#Block height of BEP153 upgrade
BEP153Height = 30516226

[query]
# ABCI query interface black list, suggested value: ["custom/gov/proposals", "custom/timelock/timelocks", "custom/atomicSwap/swapcreator", "custom/atomicSwap/swaprecipient"]
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var (
Version string
)

const NodeVersion = "v0.10.1"
const NodeVersion = "v0.10.2"

func init() {
Version = fmt.Sprintf("BNB Beacon Chain Release: %s;", NodeVersion)
Expand Down