From 1f6a4abdd23827f8ee781500f0abce3c8e166013 Mon Sep 17 00:00:00 2001 From: David Edey Date: Tue, 19 Apr 2022 15:45:08 +0100 Subject: [PATCH] Fix formatting --- .../com/radixdlt/statecomputer/RadixEngineStateComputer.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/radixdlt-core/radixdlt/src/main/java/com/radixdlt/statecomputer/RadixEngineStateComputer.java b/radixdlt-core/radixdlt/src/main/java/com/radixdlt/statecomputer/RadixEngineStateComputer.java index 16367e7657..6afc35cb61 100644 --- a/radixdlt-core/radixdlt/src/main/java/com/radixdlt/statecomputer/RadixEngineStateComputer.java +++ b/radixdlt-core/radixdlt/src/main/java/com/radixdlt/statecomputer/RadixEngineStateComputer.java @@ -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); }