style: Set clang-format width 100 (#2953)

This commit is contained in:
Ayaz Salikhov
2026-02-20 15:56:03 +00:00
committed by GitHub
parent 480264ff8f
commit 6ba58f42f0
575 changed files with 14315 additions and 6552 deletions

View File

@@ -52,7 +52,8 @@ ForwardingSource::ForwardingSource(
{
connectionBuilder_.setConnectionTimeout(connTimeout)
.addHeader(
{boost::beast::http::field::user_agent, fmt::format("{} websocket-client-coro", BOOST_BEAST_VERSION_STRING)}
{boost::beast::http::field::user_agent,
fmt::format("{} websocket-client-coro", BOOST_BEAST_VERSION_STRING)}
);
}
@@ -103,7 +104,8 @@ ForwardingSource::forwardToRippled(
if (not parsedResponse.is_object())
throw std::runtime_error("response is not an object");
} catch (std::exception const& e) {
LOG(log_.debug()) << "Error parsing response from rippled: " << e.what() << ". Response: " << *response;
LOG(log_.debug()) << "Error parsing response from rippled: " << e.what()
<< ". Response: " << *response;
return std::unexpected{rpc::ClioError::EtlInvalidResponse};
}