Skip to content

Commit 2f469e6

Browse files
committed
fix logging in v20 upgrade, fix typo in globalfee readme
1 parent de99d7e commit 2f469e6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/upgrades.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func (app *WasmApp) NextStoreLoader(upgradeInfo upgradetypes.Plan) (storeLoader
5353
if len(storeUpgrades.Renamed) != 0 {
5454
app.Logger().Info("upgrade", upgradeInfo.Name, "will rename stores", storeUpgrades.Renamed)
5555
}
56-
if len(storeUpgrades.Deleted) == 0 {
56+
if len(storeUpgrades.Deleted) != 0 {
5757
app.Logger().Info("upgrade", upgradeInfo.Name, "will delete stores", storeUpgrades.Deleted)
5858
}
5959
storeLoader = upgradetypes.UpgradeStoreLoader(upgradeInfo.Height, &storeUpgrades)

x/globalfee/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Global fee module
22

3-
The Global fee module is based on [Gaia's implementation](https://github.com/cosmos/gaia). Whitch is supplied by the great folks at [TGrade](https://github.com/confio/tgrade) 👋, with minor modifications. All credits and big thanks go to the original authors.
3+
The Global fee module is based on [Gaia's implementation](https://github.com/cosmos/gaia). Which is supplied by the great folks at [TGrade](https://github.com/confio/tgrade) 👋, with minor modifications. All credits and big thanks go to the original authors.
44

55
More information about Cosmoshub fee system please check [here](https://github.com/cosmos/gaia/blob/v17.3.0/docs/docs/modules/globalfee.md).

0 commit comments

Comments
 (0)