diff --git a/CHANGELOG.md b/CHANGELOG.md index eb930cf811..5b65de8f8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ * [\#62](https://github.com/Finschia/wasmd/pull/62) fill ContractHistory querier result's Updated field * [\#52](https://github.com/Finschia/wasmd/pull/52) fix cli_test error of wasmplus and add cli_test ci * [\#89](https://github.com/Finschia/wasmd/pull/89) fill ContractInfo querier result's Updated field +* [\#90](https://github.com/Finschia/wasmd/pull/90) delete output in TestQueryContractsByCode ### Breaking Changes diff --git a/x/wasm/keeper/querier_test.go b/x/wasm/keeper/querier_test.go index 96fb6300a6..ecd40e6dd7 100644 --- a/x/wasm/keeper/querier_test.go +++ b/x/wasm/keeper/querier_test.go @@ -306,7 +306,6 @@ func TestQueryContractsByCode(t *testing.T) { adminAddr := contract.CreatorAddr label := "demo contract to query" contractAddr, _, err := keepers.ContractKeeper.Instantiate(ctx, contract.CodeID, contract.CreatorAddr, adminAddr, initMsgBz, label, initialAmount) - fmt.Println(contract.CodeID) require.NoError(t, err) return contractAddr }