Compare commits

..

6 Commits

Author SHA1 Message Date
Denis Angell
19b4e23a48 fix typo 2024-09-11 04:23:39 +02:00
Denis Angell
02b739ac40 clang-format 2024-09-11 04:18:58 +02:00
Denis Angell
184b0aea0a fix clang-format 2024-09-11 04:17:32 +02:00
Denis Angell
7ba9dd7f5c Merge branch 'dev' into add-tests 2024-09-11 04:16:36 +02:00
Denis Angell
afb12ad4e7 change fix name 2024-09-11 04:14:36 +02:00
Denis Angell
1ac62f12c7 add fix 2024-09-09 12:30:49 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -111,7 +111,7 @@ public:
std::uint32_t minimumTxnInLedgerSA = 1000;
/// Number of transactions per ledger that fee escalation "works
/// towards".
std::uint32_t targetTxnInLedger = 1000;
std::uint32_t targetTxnInLedger = 256;
/** Optional maximum allowed value of transactions per ledger before
fee escalation kicks in. By default, the maximum is an emergent
property of network, validator, and consensus performance. This

View File

@@ -240,7 +240,7 @@ public:
bool LEDGER_REPLAY = false;
// Work queue limits
int MAX_TRANSACTIONS = 1000;
int MAX_TRANSACTIONS = 250;
static constexpr int MAX_JOB_QUEUE_TX = 1000;
static constexpr int MIN_JOB_QUEUE_TX = 100;