-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: backport changes to remove the ability to take a fee for ea…
…ch forwarded packet (#210) * WIP: backport changes to remove fee feature * chore: add Makefile to top level directory for running go mod tidy on entire repo * chore: go mod tidy * refactor: remove params and cli code * chore: fix incorrect import paths for cosmos-sdk/store * chore: go mod tidy pfm e2e package * fix: use x/capability in SDK v0.47 * mod tidy async-icq (golang.org/x/exp) patch * mod tidy pfm again... * bump: go1.22 + golangci v1.56.2 * chore(deps): ict newer v7 branch with updated cometbft version (was an API breaking change) * chore: really fix dep with ict v7 --------- Co-authored-by: Reece Williams <[email protected]>
- Loading branch information
1 parent
295cc86
commit 631dd6f
Showing
51 changed files
with
1,385 additions
and
3,291 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## mod-tidy: go mod tidy spawn, simapp, and interchaintest with proper go.mod suffixes | ||
mod-tidy: | ||
cd middleware/packet-forward-middleware && go mod tidy | ||
cd middleware/packet-forward-middleware/e2e && go mod tidy | ||
|
||
cd modules/async-icq && go mod tidy | ||
cd modules/async-icq/e2e && go mod tidy | ||
|
||
cd modules/ibc-hooks && go mod tidy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -144,7 +144,6 @@ cosmovisor: | |
mocks: $(MOCKS_DIR) | ||
go install go.uber.org/mock/[email protected] | ||
mockgen -package=mock -destination=./test/mock/transfer_keeper.go $(GOMOD)/packetforward/types TransferKeeper | ||
mockgen -package=mock -destination=./test/mock/distribution_keeper.go $(GOMOD)/packetforward/types DistributionKeeper | ||
mockgen -package=mock -destination=./test/mock/bank_keeper.go $(GOMOD)/packetforward/types BankKeeper | ||
mockgen -package=mock -destination=./test/mock/channel_keeper.go $(GOMOD)/packetforward/types ChannelKeeper | ||
mockgen -package=mock -destination=./test/mock/ics4_wrapper.go github.com/cosmos/ibc-go/v7/modules/core/05-port/types ICS4Wrapper | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.