fix(tools/cosmovisor): do not download all binaires with autodownload (#23653)

Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
Alex Gartner 2025-02-12 08:28:35 -08:00 committed by GitHub
parent e3718e06c9
commit f072ecaba6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 4 deletions

View File

@ -41,6 +41,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
### Bug Fixes
* [#23652](https://github.com/cosmos/cosmos-sdk/pull/23652) Fix issue with wrong directory placement when using `prepare-upgrade` for non archive.
* [#23653](https://github.com/cosmos/cosmos-sdk/pull/23653) Remove duplicate binary downloads during auto-download process
## v1.7.0 - 2024-11-18

View File

@ -44,10 +44,6 @@ func UpgradeBinary(logger log.Logger, cfg *Config, p upgradetypes.Plan) error {
return fmt.Errorf("cannot parse upgrade info: %w", err)
}
if err := upgradeInfo.ValidateFull(cfg.Name); err != nil {
return fmt.Errorf("invalid binaries: %w", err)
}
url, err := GetBinaryURL(upgradeInfo.Binaries)
if err != nil {
return err