Skip to content

Commit

Permalink
fix(x/group): orm codespace name (cosmos#20750)
Browse files Browse the repository at this point in the history
(cherry picked from commit 9700678)
  • Loading branch information
robert-zaremba authored and karzak committed Dec 18, 2024
1 parent bc7d1e5 commit 0739a74
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ Ref: https://keepachangelog.com/en/1.0.0/

## [Unreleased]

### Bug Fixes

* (x/group) [#20750](https://github.com/cosmos/cosmos-sdk/pull/20750) x/group shouldn't claim "orm" error codespace. This prevents any chain Cosmos SDK `v0.47` chain to use the ORM module.

## [v0.47.12](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.12) - 2024-06-10

## Improvements
Expand Down
4 changes: 2 additions & 2 deletions x/group/errors/orm.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"github.com/cosmos/cosmos-sdk/types/errors"
)

// mathCodespace is the codespace for all errors defined in orm package
const ormCodespace = "orm"
// ormCodespace is the codespace for all errors defined in orm package
const ormCodespace = "legacy_orm"

var (
// ErrORMIteratorDone defines an error when an iterator is done
Expand Down

0 comments on commit 0739a74

Please sign in to comment.