Skip to content

Commit

Permalink
ci and noOphandler
Browse files Browse the repository at this point in the history
  • Loading branch information
ajansari95 committed Feb 19, 2023
1 parent 83e4543 commit 60db814
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/buildtest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ jobs:
cat coverage.txt | grep .pb.go -v | grep .pb.gw.go -v | grep osmosis-types -v > coverage_nogen.txt
- name: "Go vulnerability checks"
continue-on-error: true #temp-till we upgrade to v1.20
run: make vulncheck


- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3
with:
Expand Down
2 changes: 2 additions & 0 deletions app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const (
v010300UpgradeName = "v1.3.0"
v010400UpgradeName = "v1.4.0"
v010400rc6UpgradeName = "v1.4.0-rc6"
v010400rc7UpgradeName = "v1.4.0-rc7"
)

func isTest(ctx sdk.Context) bool {
Expand All @@ -48,6 +49,7 @@ func setUpgradeHandlers(app *Quicksilver) {
app.UpgradeKeeper.SetUpgradeHandler(v010300UpgradeName, noOpHandler(app))
app.UpgradeKeeper.SetUpgradeHandler(v010400UpgradeName, v010400UpgradeHandler(app))
app.UpgradeKeeper.SetUpgradeHandler(v010400rc6UpgradeName, v010400rc6UpgradeHandler(app))
app.UpgradeKeeper.SetUpgradeHandler(v010400rc7UpgradeName, noOpHandler(app))

// When a planned update height is reached, the old binary will panic
// writing on disk the height and name of the update that triggered it
Expand Down

0 comments on commit 60db814

Please sign in to comment.