Skip to content

Commit 5bc8f38

Browse files
committed
feat: updated upgrade handler
1 parent 510ffb4 commit 5bc8f38

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/upgrades.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
tsscorefix "github.com/pushchain/push-chain-node/app/upgrades/tss-core-fix"
2828
tssvotegasless "github.com/pushchain/push-chain-node/app/upgrades/tss-vote-gasless"
2929
universaltxv1 "github.com/pushchain/push-chain-node/app/upgrades/universal-tx-v1"
30-
v120donut "github.com/pushchain/push-chain-node/app/upgrades/v1.2.0-donut"
30+
aiauditfixes "github.com/pushchain/push-chain-node/app/upgrades/ai-audit-fixes"
3131
)
3232

3333
// Upgrades list of chain upgrades
@@ -52,7 +52,7 @@ var Upgrades = []upgrades.Upgrade{
5252
chainmetavotegasless.NewUpgrade(),
5353
ceagasandpayload.NewUpgrade(),
5454
ceapayloadverificationfix.NewUpgrade(),
55-
v120donut.NewUpgrade(),
55+
aiauditfixes.NewUpgrade(),
5656
}
5757

5858
// RegisterUpgradeHandlers registers the chain upgrade handlers
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package v120donut
1+
package aiauditfixes
22

33
import (
44
"context"
@@ -16,7 +16,7 @@ import (
1616
utsstypes "github.com/pushchain/push-chain-node/x/utss/types"
1717
)
1818

19-
const UpgradeName = "v1.2.0-donut"
19+
const UpgradeName = "ai-audit-fixes"
2020

2121
func NewUpgrade() upgrades.Upgrade {
2222
return upgrades.Upgrade{

0 commit comments

Comments
 (0)