Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ulbqb committed Nov 25, 2022
1 parent af6a508 commit 953c00c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions mempool/clist_mempool.go
Original file line number Diff line number Diff line change
Expand Up @@ -555,10 +555,7 @@ func (mem *CListMempool) resCbRecheck(req *abci.Request, res *abci.Response) {
txHash := TxKey(tx)
e, ok := mem.txsMap.Load(txHash)
if !ok {
mem.logger.Debug(
"re-CheckTx transaction does not exist",
"expected", types.Tx(tx),
)
mem.logger.Debug("re-CheckTx transaction does not exist", "expected", types.Tx(tx))
return
}
var postCheckErr error
Expand Down

0 comments on commit 953c00c

Please sign in to comment.