Rename reflect.wasm to stargate_reflect.wasm

This commit is contained in:
Christoph Otter
2024-02-26 11:35:51 +01:00
parent 4c2d28a725
commit 5dc97d5c0d
7 changed files with 9 additions and 9 deletions

View File

@@ -21,7 +21,7 @@ import (
// InstantiateStargateReflectContract stores and instantiates a pre 2.0 reflect contract instance.
// This instance still expects the old CosmosMsg.Stargate variant instead of the new CosmosMsg.Any.
func InstantiateStargateReflectContract(t *testing.T, chain *ibctesting.TestChain) sdk.AccAddress {
codeID := chain.StoreCodeFile("../../x/wasm/keeper/testdata/reflect.wasm").CodeID
codeID := chain.StoreCodeFile("../../x/wasm/keeper/testdata/stargate_reflect.wasm").CodeID
contractAddr := chain.InstantiateContract(codeID, []byte(`{}`))
require.NotEmpty(t, contractAddr)
return contractAddr