Skip to content

Commit

Permalink
Rename wasm contract to .gz since that is what it is. (cosmos#5131)
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisJim committed Nov 20, 2023
1 parent bd16994 commit cb771ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions e2e/tests/wasm/grandpa_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (s *GrandpaTestSuite) TestMsgTransfer_Succeeds_GrandpaContract() {

cosmosWallet := s.CreateUserOnChainB(ctx, testvalues.StartingTokenAmount)

file, err := os.Open("../data/ics10_grandpa_cw.wasm")
file, err := os.Open("../data/ics10_grandpa_cw.wasm.gz")
s.Require().NoError(err)

checksum := s.PushNewWasmClientProposal(ctx, cosmosChain, cosmosWallet, file)
Expand Down Expand Up @@ -234,7 +234,7 @@ func (s *GrandpaTestSuite) TestMsgMigrateContract_Success_GrandpaContract() {

cosmosWallet := s.CreateUserOnChainB(ctx, testvalues.StartingTokenAmount)

file, err := os.Open("../data/ics10_grandpa_cw.wasm")
file, err := os.Open("../data/ics10_grandpa_cw.wasm.gz")
s.Require().NoError(err)

checksum := s.PushNewWasmClientProposal(ctx, cosmosChain, cosmosWallet, file)
Expand Down Expand Up @@ -321,7 +321,7 @@ func (s *GrandpaTestSuite) TestMsgMigrateContract_ContractError_GrandpaContract(

cosmosWallet := s.CreateUserOnChainB(ctx, testvalues.StartingTokenAmount)

file, err := os.Open("../data/ics10_grandpa_cw.wasm")
file, err := os.Open("../data/ics10_grandpa_cw.wasm.gz")
s.Require().NoError(err)

checksum := s.PushNewWasmClientProposal(ctx, cosmosChain, cosmosWallet, file)
Expand Down

0 comments on commit cb771ca

Please sign in to comment.