Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update cosmos-sdk in v50 feature branch #4392

Merged
Prev Previous commit
Next Next commit
fix build issues
  • Loading branch information
faddat committed Aug 22, 2023
commit 26848d7f93ebbdc7a691fe25b8bd47ec18cc1eb6
2 changes: 1 addition & 1 deletion .github/workflows/golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.6.0
with:
version: v1.54.1
version: v1.54.2
args: --timeout 5m
faddat marked this conversation as resolved.
Show resolved Hide resolved
1 change: 1 addition & 0 deletions modules/apps/transfer/simulation/genesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ func TestRandomizedGenState1(t *testing.T) {
}

for _, tt := range tests {
tt := tt
require.Panicsf(t, func() { simulation.RandomizedGenState(&tt.simState) }, tt.panicMsg)
}
}
2 changes: 1 addition & 1 deletion testing/simapp/export.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func (app *SimApp) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddrs []

// reinitialize all validators
err = app.StakingKeeper.IterateValidators(ctx, func(_ int64, val stakingtypes.ValidatorI) (stop bool) {
valAddr, err := sdk.ValAddressFromBech32(val.GetOperator())
valBz, err := sdk.ValAddressFromBech32(val.GetOperator())
if err != nil {
panic(err)
}
Expand Down
Loading