mirror of
https://github.com/XRPLF/clio.git
synced 2026-04-29 15:37:53 +00:00
fix: Re-add account_tx max limit (#1855)
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user