From d921c87c886bd216c23f076600e4854de29bcef1 Mon Sep 17 00:00:00 2001 From: Richard Holland Date: Fri, 11 Oct 2024 09:57:06 +1100 Subject: [PATCH] also update max transactions for tx queue --- src/ripple/core/Config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ripple/core/Config.h b/src/ripple/core/Config.h index 6a8b22fa0..d3d032b01 100644 --- a/src/ripple/core/Config.h +++ b/src/ripple/core/Config.h @@ -240,7 +240,7 @@ public: bool LEDGER_REPLAY = false; // Work queue limits - int MAX_TRANSACTIONS = 250; + int MAX_TRANSACTIONS = 1000; static constexpr int MAX_JOB_QUEUE_TX = 1000; static constexpr int MIN_JOB_QUEUE_TX = 100;