File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 17
17
wasmIdent = []byte ("\x00 \x61 \x73 \x6D " )
18
18
)
19
19
20
- // IsGzip returns checks if the file contents are gzip compressed
20
+ // IsGzip checks if the file contents are gzip compressed
21
21
func IsGzip (input []byte ) bool {
22
22
return len (input ) >= 3 && bytes .Equal (gzipIdent , input [0 :3 ])
23
23
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
13
13
"github.com/CosmWasm/wasmd/x/wasm/types"
14
14
)
15
15
16
- // newWasmModuleEvent creates with wasm module event for interacting with the given contract. Adds custom attributes
16
+ // newWasmModuleEvent creates a wasm module event for interacting with the given contract. Adds custom attributes
17
17
// to this event.
18
18
func newWasmModuleEvent (customAttributes []wasmvmtypes.EventAttribute , contractAddr sdk.AccAddress ) (sdk.Events , error ) {
19
19
attrs , err := contractSDKEventAttributes (customAttributes , contractAddr )
You can’t perform that action at this time.
0 commit comments