-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update readme with v0.11.0 upgrade details (#69) * feat: add ica host module (#72) * refactor app (#73) * add keepers and keys in seperate directory * refactor: refactor app (seperate keepers and modules) * fix issues * feat: add marketplace module as internal module (#74) * feat: add marketplace module as internal module * fix lint issues * itc patch updates (#78) * remove max claims check * add claim count to campaign * add upgrade handler for itc-patch * fix: end fully claimed campaigns * Revert "add upgrade handler for itc-patch" This reverts commit 2eced93.
- Loading branch information
Showing
74 changed files
with
22,666 additions
and
1,153 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package app | ||
|
||
import ( | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
) | ||
|
||
// BeginBlockForks is intended to be run in a chain upgrade. | ||
func BeginBlockForks(ctx sdk.Context, app *OmniFlixApp) { | ||
for _, fork := range Forks { | ||
if ctx.BlockHeight() == fork.UpgradeHeight { | ||
fork.BeginForkLogic(ctx, &app.AppKeepers) | ||
return | ||
} | ||
} | ||
} |
Oops, something went wrong.