Implement ledger forward replay

This commit is contained in:
Peng Wang
2020-07-20 10:51:39 -04:00
committed by manojsdoshi
parent 49409dbf27
commit 7e97bfce10
58 changed files with 5243 additions and 429 deletions

View File

@@ -529,6 +529,9 @@ Config::loadFromString(std::string const& fileContents)
if (getSingleSection(secConfig, SECTION_COMPRESSION, strTemp, j_))
COMPRESSION = beast::lexicalCastThrow<bool>(strTemp);
if (getSingleSection(secConfig, SECTION_LEDGER_REPLAY, strTemp, j_))
LEDGER_REPLAY = beast::lexicalCastThrow<bool>(strTemp);
if (exists(SECTION_REDUCE_RELAY))
{
auto sec = section(SECTION_REDUCE_RELAY);