From ed09298cc0d90d57b3e0943876ee21cc5f1a7dc3 Mon Sep 17 00:00:00 2001 From: Denis Angell Date: Thu, 30 Jan 2025 10:36:35 +0100 Subject: [PATCH] Update Batch.cpp --- src/xrpld/app/tx/detail/Batch.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/xrpld/app/tx/detail/Batch.cpp b/src/xrpld/app/tx/detail/Batch.cpp index 327b104da5b..31f92b0f66b 100644 --- a/src/xrpld/app/tx/detail/Batch.cpp +++ b/src/xrpld/app/tx/detail/Batch.cpp @@ -146,10 +146,10 @@ Batch::preflight(PreflightContext const& ctx) ctx.app, ctx.rules, parentBatchId, stx, tapBATCH, ctx.j); preflightResult.ter != tesSUCCESS) { - JLOG(ctx.j.trace()) << "BatchTrace[" << parentBatchId << "]: " - << "inner txn preflight failed: " - << preflightResult.ter << " " - << "txID: " << hash; + JLOG(ctx.j.trace()) + << "BatchTrace[" << parentBatchId << "]: " + << "inner txn preflight failed: " << preflightResult.ter << " " + << "txID: " << hash; return temINVALID_INNER_BATCH; }