mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-27 17:10:46 +00:00
chore: Enable most readability checks (#7772)
This commit is contained in:
@@ -3923,12 +3923,10 @@ private:
|
||||
[[nodiscard]] bool
|
||||
verify() const
|
||||
{
|
||||
for (auto const& [acct, state] : accounts)
|
||||
{
|
||||
if (!state.verify(env, acct))
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
return std::ranges::all_of(accounts, [&](auto const& entry) {
|
||||
auto const& [acct, state] = entry;
|
||||
return state.verify(env, acct);
|
||||
});
|
||||
}
|
||||
|
||||
struct BridgeCounters
|
||||
|
||||
Reference in New Issue
Block a user