Skip to content

Commit

Permalink
change error text of total escrow migration (cosmos#3775)
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Rodriguez authored Jun 7, 2023
1 parent c5fd97d commit d7d9fa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/apps/transfer/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func (am AppModule) RegisterServices(cfg module.Configurator) {
}

if err := cfg.RegisterMigration(types.ModuleName, 2, m.MigrateTotalEscrowForDenom); err != nil {
panic(fmt.Sprintf("failed to migrate total escrow amount from version 2 to 3: %v", err))
panic(fmt.Sprintf("failed to migrate transfer app from version 2 to 3: %v", err))
}

if err := cfg.RegisterMigration(types.ModuleName, 3, m.MigrateParams); err != nil {
Expand Down

0 comments on commit d7d9fa9

Please sign in to comment.