diff --git a/src/ripple/app/tx/impl/Escrow.cpp b/src/ripple/app/tx/impl/Escrow.cpp index 9abc42d19..7ddbc9f4b 100644 --- a/src/ripple/app/tx/impl/Escrow.cpp +++ b/src/ripple/app/tx/impl/Escrow.cpp @@ -441,7 +441,8 @@ EscrowFinish::preflight(PreflightContext const& ctx) if ((!ctx.tx.isFieldPresent(sfEscrowID) && !ctx.tx.isFieldPresent(sfOfferSequence)) || - ctx.tx.isFieldPresent(sfEscrowID) && ctx.tx.isFieldPresent(sfOfferSequence)) + ctx.tx.isFieldPresent(sfEscrowID) && + ctx.tx.isFieldPresent(sfOfferSequence)) return temMALFORMED; return tesSUCCESS; diff --git a/src/ripple/app/tx/impl/URIToken.cpp b/src/ripple/app/tx/impl/URIToken.cpp index b5da83d8a..11054ebac 100644 --- a/src/ripple/app/tx/impl/URIToken.cpp +++ b/src/ripple/app/tx/impl/URIToken.cpp @@ -182,7 +182,8 @@ URIToken::preclaim(PreclaimContext const& ctx) AccountID const acc = ctx.tx.getAccountID(sfAccount); uint16_t tt = ctx.tx.getFieldU16(sfTransactionType); - auto const sle = ctx.view.read(keylet::account(ctx.tx.getAccountID(sfAccount))); + auto const sle = + ctx.view.read(keylet::account(ctx.tx.getAccountID(sfAccount))); if (!sle) return tefINTERNAL;