mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-06 18:26:51 +00:00
chore: Set ColumnLimit to 120 in clang-format (#6288)
This change updates the ColumnLimit from 80 to 120, and applies clang-format to reformat the code.
This commit is contained in:
@@ -27,9 +27,8 @@ public:
|
||||
Account const bob{"bob"};
|
||||
env.fund(XRP(10000), alice, bob);
|
||||
|
||||
std::unique_ptr<AbstractClient> client = useWS
|
||||
? makeWSClient(env.app().config())
|
||||
: makeJSONRPCClient(env.app().config());
|
||||
std::unique_ptr<AbstractClient> client =
|
||||
useWS ? makeWSClient(env.app().config()) : makeJSONRPCClient(env.app().config());
|
||||
|
||||
Json::Value tx = Json::objectValue;
|
||||
tx[jss::tx_json] = pay(alice, bob, XRP(1));
|
||||
@@ -47,8 +46,7 @@ public:
|
||||
// When booted, we just get a null json response
|
||||
if (jv.isNull())
|
||||
booted = true;
|
||||
else if (!(jv.isMember(jss::status) &&
|
||||
(jv[jss::status] == "success")))
|
||||
else if (!(jv.isMember(jss::status) && (jv[jss::status] == "success")))
|
||||
{
|
||||
// Don't use BEAST_EXPECT above b/c it will be called a
|
||||
// non-deterministic number of times and the number of tests run
|
||||
|
||||
Reference in New Issue
Block a user