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

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dhedey committed Apr 19, 2022
1 parent d83237f commit 1f6a4ab
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ public void addToMempool(MempoolAdd mempoolAdd, @Nullable BFTNode origin) {
try {
addToMempool(txn, origin);
} catch (MempoolDuplicateException ex) {
log.trace("Transaction {} was not added as it was already in the mempool", txn.getId());
log.trace(
"Transaction {} was not added as it was already in the mempool", txn.getId());
} catch (MempoolRejectedException ex) {
log.debug("Transaction {} was not added to the mempool", txn.getId(), ex);
}
Expand Down

0 comments on commit 1f6a4ab

Please sign in to comment.