Skip to content

Commit

Permalink
feat: add pampas upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
yutianwu committed Oct 10, 2023
1 parent baea80e commit bf4c3e0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ replace (
github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.1
// replace broken goleveldb
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
github.com/wercker/journalhook => github.com/wercker/journalhook v0.0.0-20230927020745-64542ffa4117
)

retract (
Expand Down
2 changes: 1 addition & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1852,7 +1852,7 @@ github.com/wealdtech/go-eth2-util v1.6.3 h1:2INPeOR35x5LdFFpSzyw954WzTD+DFyHe3yK
github.com/wealdtech/go-eth2-util v1.6.3/go.mod h1:0hFMj/qtio288oZFHmAbCnPQ9OB3c4WFzs5NVPKTY4k=
github.com/wealdtech/go-eth2-wallet-encryptor-keystorev4 v1.1.3/go.mod h1:qiIimacW5NhVRy8o+YxWo9YrecXqDAKKbL0+sOa0SJ4=
github.com/wealdtech/go-eth2-wallet-types/v2 v2.8.2/go.mod h1:k6kmiKWSWBTd4OxFifTEkPaBLhZspnO2KFD5XJY9nqg=
github.com/wercker/journalhook v0.0.0-20180428041537-5d0a5ae867b3/go.mod h1:XCsSkdKK4gwBMNrOCZWww0pX6AOt+2gYc5Z6jBRrNVg=
github.com/wercker/journalhook v0.0.0-20230927020745-64542ffa4117/go.mod h1:XCsSkdKK4gwBMNrOCZWww0pX6AOt+2gYc5Z6jBRrNVg=
github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1/go.mod h1:8UvriyWtv5Q5EOgjHaSseUEdkQfvwFv1I/In/O2M9gc=
github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc/go.mod h1:bopw91TMyo8J3tvftk8xmU2kPmlrt4nScJQZU2hE5EM=
github.com/whyrusleeping/mdns v0.0.0-20190826153040-b9b60ed33aa9/go.mod h1:j4l84WPFclQPj320J9gp0XwNKBb3U0zt5CBqjPp22G4=
Expand Down
5 changes: 4 additions & 1 deletion types/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ const (
// EnablePublicDelegationUpgrade is the upgrade name for enabling public delegation
EnablePublicDelegationUpgrade = "EnablePublicDelegationUpgrade"

// Nagqu is the upgrade name for following features:
// Nagqu is the upgrade name for Nagqu upgrade
Nagqu = "Nagqu"

// Pampas is the upgrade name for Pampas upgrade
Pampas = "Pampas"
)
5 changes: 4 additions & 1 deletion x/upgrade/types/upgrade_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ const (
// EnablePublicDelegationUpgrade is the upgrade name for enabling public delegation
EnablePublicDelegationUpgrade = types.EnablePublicDelegationUpgrade

// Nagqu is the upgrade name for following features:
// Nagqu is the upgrade name for Nagqu upgrade
Nagqu = types.Nagqu

// Pampas is the upgrade name for Pampas upgrade
Pampas = types.Pampas
)

// The default upgrade config for networks
Expand Down

0 comments on commit bf4c3e0

Please sign in to comment.