diff --git a/docs/ciTests.md b/docs/ciTests.md index 22764377b..765fcb60c 100644 --- a/docs/ciTests.md +++ b/docs/ciTests.md @@ -158,7 +158,7 @@ This example is broken down in the steps below. Artifacts allow you to share data between jobs in a workflow. You can read more about them [here](https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts) -We recommend to use the [Heighliner Action](https://github.com/strangelove-ventures/heighliner-build-action) (strangelove-ventures/heighliner-build-action@vx.x.x). This action streamlines setting up Go, checking out the repo, and building the image with the proper tags. Like the local build step above, this removes the need for a local Dockerfile. +We recommend to use the [Heighliner Action](https://github.com/strangelove-ventures/heighliner-build-action) (strangelove-ventures/heighliner-build-action). This action streamlines setting up Go, checking out the repo, and building the image with the proper tags. Like the local build step above, this removes the need for a local Dockerfile. Note the `tar-export-path`. This is the artifact that will be uploaded and used by the other GitHub runners. diff --git a/local-interchain/rust/localic-std/src/modules/cosmwasm.rs b/local-interchain/rust/localic-std/src/modules/cosmwasm.rs index 4044731a2..627cb3d90 100644 --- a/local-interchain/rust/localic-std/src/modules/cosmwasm.rs +++ b/local-interchain/rust/localic-std/src/modules/cosmwasm.rs @@ -287,7 +287,7 @@ pub fn get_contract_address(rb: &ChainRequestBuilder, tx_hash: &str) -> Result Result { - let res = rb.query_tx_hash(tx_hash); + let mut res = rb.query_tx_hash(tx_hash); let code = res["code"].as_i64().unwrap_or_default(); if code != 0 { @@ -298,7 +298,13 @@ fn get_contract(rb: &ChainRequestBuilder, tx_hash: &str) -> Result