mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Grow the open ledger expected transactions quickly (RIPD-1630):
* When increasing the expected ledger size, add on an extra 20%. * When decreasing the expected ledger size, take the minimum of the validated ledger size or the old expected size, and subract another 50%. * Update fee escalation documentation. * Refactor the FeeMetrics object to use values from Setup
This commit is contained in:
committed by
Nik Bougalis
parent
e14f913244
commit
7295cf979b
@@ -1283,8 +1283,9 @@ class LedgerRPC_test : public beast::unit_test::suite
|
||||
using namespace test::jtx;
|
||||
Env env { *this,
|
||||
envconfig([](std::unique_ptr<Config> cfg) {
|
||||
cfg->section("transaction_queue")
|
||||
.set("minimum_txn_in_ledger_standalone", "3");
|
||||
auto& section = cfg->section("transaction_queue");
|
||||
section.set("minimum_txn_in_ledger_standalone", "3");
|
||||
section.set("normal_consensus_increase_percent", "0");
|
||||
return cfg;
|
||||
})};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user