Skip to content

Commit

Permalink
comment out invariant
Browse files Browse the repository at this point in the history
  • Loading branch information
GNaD13 committed Oct 10, 2023
1 parent 9267213 commit 6cf4300
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion modules/apps/transfer/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,11 @@ func NewAppModule(k keeper.Keeper) AppModule {

// RegisterInvariants implements the AppModule interface
func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry) {
keeper.RegisterInvariants(ir, &am.keeper)
// Composable can't pass this Invariants
// when transfer ppica because of ppica
// actually not a native token so instead of lock
// in escrow address, we burn ppica and transfer ibc(ppica) denom
// keeper.RegisterInvariants(ir, &am.keeper)
}

// RegisterServices registers module services.
Expand Down

0 comments on commit 6cf4300

Please sign in to comment.