Skip to content

Commit

Permalink
Merge pull request cosmos#664 from CosmWasm/nolint2
Browse files Browse the repository at this point in the history
Disable false positive linter alert
  • Loading branch information
ethanfrey authored Oct 26, 2021
2 parents 9186d81 + a316dcc commit 7edf2f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/wasm/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func NewHandler(k types.ContractOpsKeeper) sdk.Handler {
err error
)
switch msg := msg.(type) {
case *MsgStoreCode:
case *MsgStoreCode: //nolint:typecheck
res, err = msgServer.StoreCode(sdk.WrapSDKContext(ctx), msg)
case *MsgInstantiateContract:
res, err = msgServer.InstantiateContract(sdk.WrapSDKContext(ctx), msg)
Expand Down

0 comments on commit 7edf2f9

Please sign in to comment.