fix: Re-add account_tx max limit (#1855)

This commit is contained in:
Alex Kremer
2025-01-29 13:42:31 +00:00
committed by GitHub
parent 75354fbecd
commit 81fe617816
3 changed files with 68 additions and 11 deletions

View File

@@ -56,12 +56,7 @@ TEST_F(WorkQueueTest, WhitelistedExecutionCountAddsUp)
std::atomic_uint32_t executeCount = 0u;
for (auto i = 0u; i < kTOTAL; ++i) {
queue.postCoro(
[&executeCount](auto /* yield */) {
++executeCount;
},
true
);
queue.postCoro([&executeCount](auto /* yield */) { ++executeCount; }, true);
}
queue.join();