Skip to content

Commit

Permalink
Merge branch 'main' into strath/dyncom-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
StrathCole committed Mar 11, 2024
2 parents 89420a4 + 47a0a2b commit 5a8ef97
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: docker/setup-buildx-action@v3
-
name: Build e2e image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
file: ./tests/e2e/e2e.Dockerfile
context: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/interchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: docker/setup-buildx-action@v3
- name: Build interchain image
id: build_image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
file: ./ictest.Dockerfile
context: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-sims.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: install runsim
run: |
export GO111MODULE="on" && go get github.com/cosmos/tools/cmd/[email protected]
- uses: actions/cache@v3.3.3
- uses: actions/cache@v4.0.1
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
Expand All @@ -40,7 +40,7 @@ jobs:
needs: [build, install-runsim]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3.3.3
- uses: actions/cache@v4.0.1
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/sims.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: go version
- name: Install runsim
run: export GO111MODULE="on" && go install github.com/cosmos/tools/cmd/[email protected]
- uses: actions/cache@v3.3.3
- uses: actions/cache@v4.0.1
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
Expand All @@ -68,7 +68,7 @@ jobs:
**/**.go
go.mod
go.sum
- uses: actions/cache@v3.3.3
- uses: actions/cache@v4.0.1
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
go.sum
SET_ENV_NAME_INSERTIONS: 1
SET_ENV_NAME_LINES: 1
- uses: actions/cache@v3.3.3
- uses: actions/cache@v4.0.1
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
go.sum
SET_ENV_NAME_INSERTIONS: 1
SET_ENV_NAME_LINES: 1
- uses: actions/cache@v3.3.3
- uses: actions/cache@v4.0.1
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
go.sum
SET_ENV_NAME_INSERTIONS: 1
SET_ENV_NAME_LINES: 1
- uses: actions/cache@v3.3.3
- uses: actions/cache@v4.0.1
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
Expand Down
14 changes: 14 additions & 0 deletions custom/auth/ante/fee_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,20 @@ func (s *AnteTestSuite) TestTaxExemption() {
// tax this one hence burn amount is fee amount
minFeeAmount: feeAmt,
expectProceeds: feeAmt,
}, {
name: "MsgExec(MsgSend(normal -> normal))",
msgSigner: privs[2],
msgCreator: func() []sdk.Msg {
var msgs []sdk.Msg

msg1 := authz.NewMsgExec(addrs[1], []sdk.Msg{banktypes.NewMsgSend(addrs[2], addrs[3], sdk.NewCoins(sendCoin))})
msgs = append(msgs, &msg1)

return msgs
},
// tax this one hence burn amount is fee amount
minFeeAmount: feeAmt,
expectProceeds: feeAmt,
}, {
name: "MsgSend(exemption -> normal), MsgSend(exemption -> exemption)",
msgSigner: privs[0],
Expand Down

0 comments on commit 5a8ef97

Please sign in to comment.