From 988a227c929fa0d74e08143ef8ef2bfe709a423b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 2 Apr 2026 17:11:50 +0000 Subject: [PATCH] Merge develop: resolve conflicts and fix log message style Agent-Logs-Url: https://github.com/XRPLF/rippled/sessions/f9109d51-261e-4dbf-9745-d4160b0d80f9 Co-authored-by: mvadari <8029314+mvadari@users.noreply.github.com> --- src/libxrpl/tx/transactors/dex/OfferCreate.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libxrpl/tx/transactors/dex/OfferCreate.cpp b/src/libxrpl/tx/transactors/dex/OfferCreate.cpp index 8e6d21a165..1495859bba 100644 --- a/src/libxrpl/tx/transactors/dex/OfferCreate.cpp +++ b/src/libxrpl/tx/transactors/dex/OfferCreate.cpp @@ -224,15 +224,15 @@ OfferCreate::checkAcceptAsset( // Read the trustline once for multiple flag checks to optimize performance auto const trustLine = view.read(keylet::line(id, issue.account, issue.currency)); - // Check if the issuer has lsfDisallowIncomingTrustline set - // If so, the account must already have a trustline to receive tokens + // Check if the issuer has lsfDisallowIncomingTrustline set. + // If so, the account must already have a trustline to receive tokens. if (view.rules().enabled(fixDisallowIncomingV1_1) && ((*issuerAccount)[sfFlags] & lsfDisallowIncomingTrustline) != 0u) { if (!trustLine) { JLOG(j.debug()) - << "delay: can't receive IOUs from issuer with DisallowIncomingTrustline set."; + << "delay: can't receive IOUs from issuer with DisallowIncomingTrustline set"; return ((flags & tapRETRY) != 0u) ? TER{terNO_LINE} : TER{tecNO_LINE}; } }