From c69f4025f2349df4284786d60243449cd89ba07d Mon Sep 17 00:00:00 2001 From: Christoph Otter Date: Wed, 7 Feb 2024 17:20:08 +0100 Subject: [PATCH] Fix lint --- x/wasm/types/wasmer_engine.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x/wasm/types/wasmer_engine.go b/x/wasm/types/wasmer_engine.go index 08d934de2b..f3829e9146 100644 --- a/x/wasm/types/wasmer_engine.go +++ b/x/wasm/types/wasmer_engine.go @@ -2,7 +2,6 @@ package types import ( wasmvm "github.com/CosmWasm/wasmvm/v2" - "github.com/CosmWasm/wasmvm/v2/types" wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" storetypes "cosmossdk.io/store/types" @@ -86,7 +85,7 @@ type WasmEngine interface { gasMeter wasmvm.GasMeter, gasLimit uint64, deserCost wasmvmtypes.UFraction, - ) (*types.QueryResult, uint64, error) + ) (*wasmvmtypes.QueryResult, uint64, error) // Migrate will migrate an existing contract to a new code binary. // This takes storage of the data from the original contract and the CodeID of the new contract that should