Skip to content

Commit 22ed453

Browse files
committed
update go.mod
1 parent f9f34ba commit 22ed453

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

Makefile

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -81,28 +81,22 @@ test-interchain-neutron:
8181
CONUSUMER_DISABLE_FEEMARKET="true" \
8282
go test -run TestProviderConsumersSuite -count=1 -v -timeout 30m
8383

84-
restore-admin-wallet:
85-
@echo "Restoring admin wallet"
86-
cd ./tests/interchain/local && sh
87-
@sh ./tests/interchain/local/restore_admin_wallet.go
88-
89-
9084
REPO_DIR=$(shell git rev-parse --show-toplevel)
9185
# run interchain ICS setup with a Neutron consumer chain. Currently, it's required to have a local docker 'neutron:v5.0.6' image and
9286
# to use the a ICS v6.4.0 due to a versioning constraints.
9387
local-ics-neutron:
9488
cd tests/interchain && \
9589
KEEP_CONTAINERS=true \
9690
SKIP_PROVIDER_CONSUMER_TESTS=true \
91+
LOCAL_USER_PATH="$(REPO_DIR)/tests/interchain/local/user_info.json" \
9792
PROVIDER_IMAGE_TAG="v6.4.0" \
9893
CONSUMER_CHAIN_ID="neutron" \
9994
CONSUMER_IMAGE_NAME="neutron" \
10095
CONSUMER_IMAGE_TAG="v5.0.6" \
10196
CONSUMER_BINARY="neutrond" \
10297
CONSUMER_BECH32_PREFIX="neutron" \
10398
CONSUMER_DENOM="untrn" \
104-
CONUSUMER_DISABLE_FEEMARKET="true" \
105-
USER_INFO_PATH="$(REPO_DIR)/tests/interchain/local/user_info.json" \
99+
CONSUMER_DISABLE_FEEMARKET="true" \
106100
go test -run TestProviderConsumersSuite -count=1 -v -timeout 30m
107101

108102
# run mbt tests
@@ -333,7 +327,7 @@ e2e-traces:
333327
### Heighliner ###
334328
###############################################################################
335329

336-
TAG ?= latest
330+
HEIGHLINER_TAG ?= latest
337331
GO_VERSION ?= 1.22
338332

339333
# Currently use a Heighliner fork until https://github.com/strangelove-ventures/heighliner/pull/313 is merged
@@ -349,4 +343,4 @@ ifeq (,$(shell which heighliner))
349343
rm -rf $(FORK_DIR)
350344
endif
351345
@echo "Building $(IMAGE)..."
352-
@heighliner build -c $(IMAGE) --git-ref $(TAG) --go-version $(GO_VERSION)
346+
@heighliner build -c $(IMAGE) --git-ref $(HEIGHLINER_TAG) --go-version $(GO_VERSION)

tests/interchain/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,6 @@ replace (
291291
github.com/cosmos/interchain-security/v6 => github.com/cosmos/interchain-security/v6 v6.0.0-20241203112553-01f9698b4450
292292
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
293293
// Remove this when strangelove-ventures updates the interchain tests to import ICS v6
294-
github.com/strangelove-ventures/interchaintest/v8 => /Users/simon/Dev/go-workspace/src/github.com/stana-miric/interchaintest
295-
// github.com/strangelove-ventures/interchaintest/v8 => github.com/sainoe/interchaintest/v8 v8.0.0-20250124160703-058a72282f21
294+
github.com/strangelove-ventures/interchaintest/v8 => github.com/sainoe/interchaintest/v8 v8.0.0-20250130103721-b2a65c83828f
296295
github.com/vedhavyas/go-subkey => github.com/strangelove-ventures/go-subkey v1.0.7
297-
298296
)

tests/interchain/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1099,6 +1099,8 @@ github.com/sagikazarmark/locafero v0.4.0 h1:HApY1R9zGo4DBgr7dqsTH/JJxLTTsOt7u6ke
10991099
github.com/sagikazarmark/locafero v0.4.0/go.mod h1:Pe1W6UlPYUk/+wc/6KFhbORCfqzgYEpgQ3O5fPuL3H4=
11001100
github.com/sagikazarmark/slog-shim v0.1.0 h1:diDBnUNK9N/354PgrxMywXnAwEr1QZcOr6gto+ugjYE=
11011101
github.com/sagikazarmark/slog-shim v0.1.0/go.mod h1:SrcSrq8aKtyuqEI1uvTDTK1arOWRIczQRv+GVI1AkeQ=
1102+
github.com/sainoe/interchaintest/v8 v8.0.0-20250130103721-b2a65c83828f h1:W8bML0bwP4zW858xaATLMVE3BVRZcmodM3hWyUXcY+E=
1103+
github.com/sainoe/interchaintest/v8 v8.0.0-20250130103721-b2a65c83828f/go.mod h1:OOAl+5e4or9FdILfKprkqeVt/WjZt0qBv7bp5fKbBSc=
11021104
github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E=
11031105
github.com/sasha-s/go-deadlock v0.3.5 h1:tNCOEEDG6tBqrNDOX35j/7hL5FcFViG6awUGROb2NsU=
11041106
github.com/sasha-s/go-deadlock v0.3.5/go.mod h1:bugP6EGbdGYObIlx7pUZtWqlvo8k9H6vCBBsiChJQ5U=

0 commit comments

Comments
 (0)