chore: update error message in SetCMS (backport #23951) (#24083)

Co-authored-by: Tristav <124001124+Pricstas@users.noreply.github.com>
Co-authored-by: aljo242 <alex@interchainlabs.io>
Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com>
This commit is contained in:
mergify[bot] 2025-03-25 21:05:23 +00:00 committed by GitHub
parent 8a54f41c7d
commit a2b7cea8a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -162,7 +162,7 @@ func (app *BaseApp) SetDB(db dbm.DB) {
func (app *BaseApp) SetCMS(cms storetypes.CommitMultiStore) {
if app.sealed {
panic("SetEndBlocker() on sealed BaseApp")
panic("SetCMS() on sealed BaseApp")
}
app.cms = cms