From 84f2c4579bdf629b0ab40318ac1235267b51d425 Mon Sep 17 00:00:00 2001 From: sashass1315 Date: Mon, 18 Aug 2025 20:32:43 +0300 Subject: [PATCH 1/2] fix: unnecessary word --- x/wasm/ioutils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/wasm/ioutils/utils.go b/x/wasm/ioutils/utils.go index 9c9cd380e8..8716fe43ba 100644 --- a/x/wasm/ioutils/utils.go +++ b/x/wasm/ioutils/utils.go @@ -17,7 +17,7 @@ var ( wasmIdent = []byte("\x00\x61\x73\x6D") ) -// IsGzip returns checks if the file contents are gzip compressed +// IsGzip checks if the file contents are gzip compressed func IsGzip(input []byte) bool { return len(input) >= 3 && bytes.Equal(gzipIdent, input[0:3]) } From 9f7f38c671648837d19bbf4866d43df2f7d83570 Mon Sep 17 00:00:00 2001 From: sashass1315 Date: Mon, 18 Aug 2025 20:37:12 +0300 Subject: [PATCH 2/2] Update events.go --- x/wasm/keeper/events.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/wasm/keeper/events.go b/x/wasm/keeper/events.go index d35cadcf5b..8141a54e0d 100644 --- a/x/wasm/keeper/events.go +++ b/x/wasm/keeper/events.go @@ -13,7 +13,7 @@ import ( "github.com/CosmWasm/wasmd/x/wasm/types" ) -// newWasmModuleEvent creates with wasm module event for interacting with the given contract. Adds custom attributes +// newWasmModuleEvent creates a wasm module event for interacting with the given contract. Adds custom attributes // to this event. func newWasmModuleEvent(customAttributes []wasmvmtypes.EventAttribute, contractAddr sdk.AccAddress) (sdk.Events, error) { attrs, err := contractSDKEventAttributes(customAttributes, contractAddr)