From 905e13d4b04317b6f3d1c63f807a1a5260307c01 Mon Sep 17 00:00:00 2001 From: brewmaster012 <88689859+brewmaster012@users.noreply.github.com> Date: Wed, 3 Jan 2024 11:29:42 -0600 Subject: [PATCH] fix: rename aux.go => utils.go to avoid go package resolver complaint (#1446) * rename aux.go => aux_.go because of error importing this project ``` go: loading module retractions for github.com/zeta-chain/node@v1.2.1: verifying go.mod: github.com/zeta-chain/node@v1.2.1/go.mod: reading https://sum.golang.org/lookup/github.com/zeta-chain/node@v1.2.1: 404 Not Found server response: not found: create zip: cmd/zetaclientd/aux.go: malformed file path "cmd/zetaclientd/aux.go": "aux" disallowed as path element component on Windows ``` * update changelog.md * rename per review request * Update changelog.md Co-authored-by: Lucas Bertrand --------- Co-authored-by: Lucas Bertrand --- changelog.md | 1 + cmd/zetaclientd/{aux.go => utils.go} | 0 2 files changed, 1 insertion(+) rename cmd/zetaclientd/{aux.go => utils.go} (100%) diff --git a/changelog.md b/changelog.md index f8580b8613..a0e8794bc0 100644 --- a/changelog.md +++ b/changelog.md @@ -39,6 +39,7 @@ * Add logger to smoke tests ### Chores +* [1446](https://github.com/zeta-chain/node/pull/1446) - renamed file `zetaclientd/aux.go` to `zetaclientd/utils.go` to avoid complaints from go package resolver. * [1499](https://github.com/zeta-chain/node/pull/1499) - Add scripts to localnet to help test gov proposals * [1442](https://github.com/zeta-chain/node/pull/1442) - remove build types in `.goreleaser.yaml` * [1504](https://github.com/zeta-chain/node/pull/1504) - remove `-race` in the `make install` commmand diff --git a/cmd/zetaclientd/aux.go b/cmd/zetaclientd/utils.go similarity index 100% rename from cmd/zetaclientd/aux.go rename to cmd/zetaclientd/utils.go