Skip to content

Commit

Permalink
Merge pull request #378 from bnb-chain/hulunbeier-patch
Browse files Browse the repository at this point in the history
feat: introduces hulunbeier-patch upgrade
  • Loading branch information
unclezoro authored Jan 2, 2024
2 parents f06e5c9 + a901225 commit f496e70
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## v1.3.0
This release introduces the Hulunbeier upgrade.

Features:
* [#368](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/368) feat: introduce the Hulunbeier upgrade
* [#376](https://github.com/bnb-chain/greenfield-cosmos-sdk/pull/376) feat: introduces hulunbeierPatch upgrade

## v1.2.1
This release changes the Manchurian upgrade height of testnet.

Features:
* [#374](https://github.com/bnb-chain/greenfield/pull/374) feat: modify Manchurian hardfork height of testnet

## V1.2.0
This release introduce the Manchurian upgrade to the testnet.

Expand Down
2 changes: 2 additions & 0 deletions types/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ const (

// Hulunbeier is the upgrade name for Hulunbeier upgrade
Hulunbeier = "Hulunbeier"

HulunbeierPatch = "HulunbeierPatch"
)
8 changes: 7 additions & 1 deletion x/upgrade/types/upgrade_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ const (
Manchurian = types.Manchurian

// Hulunbeier is the upgrade name for Hulunbeier upgrade
Hulunbeier = "Hulunbeier"
Hulunbeier = types.Hulunbeier

HulunbeierPatch = types.HulunbeierPatch
)

// The default upgrade config for networks
Expand All @@ -45,6 +47,10 @@ var (
Name: Pampas,
Height: 2427233,
Info: "Pampas hardfork",
}).SetPlan(&Plan{
Name: Manchurian,
Height: 3922485,
Info: "Manchurian hardfork",
})
)

Expand Down

0 comments on commit f496e70

Please sign in to comment.