chore: Enable most readability checks (#7772)

This commit is contained in:
Ayaz Salikhov
2026-07-14 13:21:40 +01:00
committed by GitHub
parent acd54fd627
commit e1d4f357dc
42 changed files with 102 additions and 887 deletions

View File

@@ -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