Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
fix infinite recursion
Browse files Browse the repository at this point in the history
  • Loading branch information
calbera committed Jan 30, 2024
1 parent 14511c8 commit eb51517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmos/runtime/txpool/mempool.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,5 +180,5 @@ func (m *Mempool) Remove(tx sdk.Tx) error {
return nil
}
remove:
return m.Remove(tx)
return m.cmdsPool.Remove(tx)
}

0 comments on commit eb51517

Please sign in to comment.