Reformat codebase with 120 char limit (#583)

This commit is contained in:
Alex Kremer
2023-04-06 11:24:36 +01:00
committed by GitHub
parent e60fd3e58e
commit d816ef54ab
174 changed files with 5591 additions and 10450 deletions

View File

@@ -46,10 +46,7 @@ doTransactionEntry(Context const& context)
// ledger; we simulate that here by returning not found if the transaction
// is in a different ledger than the one specified.
if (!dbResponse || dbResponse->ledgerSequence != lgrInfo.seq)
return Status{
RippledError::rpcTXN_NOT_FOUND,
"transactionNotFound",
"Transaction not found."};
return Status{RippledError::rpcTXN_NOT_FOUND, "transactionNotFound", "Transaction not found."};
auto [txn, meta] = toExpandedJson(*dbResponse);
response[JS(tx_json)] = std::move(txn);