mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
chore: Apply clang-format width 100 (#6387)
This commit is contained in:
@@ -65,13 +65,15 @@ public:
|
||||
env.fund(XRP(10000), alice, bob);
|
||||
|
||||
auto ar = env.le(alice);
|
||||
BEAST_EXPECT(ar->isFieldPresent(sfFlags) && ((ar->getFieldU32(sfFlags) & lsfPasswordSpent) == 0));
|
||||
BEAST_EXPECT(
|
||||
ar->isFieldPresent(sfFlags) && ((ar->getFieldU32(sfFlags) & lsfPasswordSpent) == 0));
|
||||
|
||||
env(regkey(alice, bob), sig(alice), fee(0));
|
||||
|
||||
ar = env.le(alice);
|
||||
BEAST_EXPECT(
|
||||
ar->isFieldPresent(sfFlags) && ((ar->getFieldU32(sfFlags) & lsfPasswordSpent) == lsfPasswordSpent));
|
||||
ar->isFieldPresent(sfFlags) &&
|
||||
((ar->getFieldU32(sfFlags) & lsfPasswordSpent) == lsfPasswordSpent));
|
||||
|
||||
// The second SetRegularKey transaction with Fee=0 should fail.
|
||||
env(regkey(alice, bob), sig(alice), fee(0), ter(telINSUF_FEE_P));
|
||||
@@ -79,7 +81,8 @@ public:
|
||||
env.trust(bob["USD"](1), alice);
|
||||
env(pay(bob, alice, bob["USD"](1)));
|
||||
ar = env.le(alice);
|
||||
BEAST_EXPECT(ar->isFieldPresent(sfFlags) && ((ar->getFieldU32(sfFlags) & lsfPasswordSpent) == 0));
|
||||
BEAST_EXPECT(
|
||||
ar->isFieldPresent(sfFlags) && ((ar->getFieldU32(sfFlags) & lsfPasswordSpent) == 0));
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user