Skip to content

Commit

Permalink
Merge pull request #1 from kienn6034/kien/try-wasm-hooks
Browse files Browse the repository at this point in the history
test: update tests for wasmhooks
  • Loading branch information
faddat authored Mar 18, 2024
2 parents 57b349e + 6567b49 commit 26b75a7
Show file tree
Hide file tree
Showing 7 changed files with 231 additions and 176 deletions.
2 changes: 1 addition & 1 deletion modules/ibc-hooks/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ go 1.21
toolchain go1.21.0

require (
cosmossdk.io/api v0.7.3
cosmossdk.io/client/v2 v2.0.0-beta.1
cosmossdk.io/core v0.11.0
cosmossdk.io/errors v1.0.1
Expand Down Expand Up @@ -34,6 +33,7 @@ require (
)

require (
cosmossdk.io/api v0.7.3 // indirect
cloud.google.com/go v0.110.10 // indirect
cloud.google.com/go/compute v1.23.3 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
Expand Down
8 changes: 4 additions & 4 deletions modules/ibc-hooks/simapp/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package simapp
import (
"errors"

ibcante "github.com/cosmos/ibc-go/v8/modules/core/ante"
"github.com/cosmos/ibc-go/v8/modules/core/keeper"
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
wasmTypes "github.com/CosmWasm/wasmd/x/wasm/types"

corestoretypes "cosmossdk.io/core/store"
circuitante "cosmossdk.io/x/circuit/ante"
Expand All @@ -13,8 +13,8 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth/ante"

wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
wasmTypes "github.com/CosmWasm/wasmd/x/wasm/types"
ibcante "github.com/cosmos/ibc-go/v8/modules/core/ante"
"github.com/cosmos/ibc-go/v8/modules/core/keeper"
)

// HandlerOptions extend the SDK's AnteHandler options by requiring the IBC
Expand Down
Loading

0 comments on commit 26b75a7

Please sign in to comment.