Correct a couple of variable names

This commit is contained in:
Ed Hennis
2026-06-15 16:47:11 -04:00
parent e75f5b101b
commit 875bcc530e

View File

@@ -65,9 +65,9 @@ namespace jtx {
std::unique_ptr<Config>
online_delete(std::unique_ptr<Config> cfg, std::uint32_t deleteInterval)
{
cfg->ledgerHistory = kDeleteInterval;
cfg->ledgerHistory = deleteInterval;
auto& section = cfg->section(Sections::kNodeDatabase);
section.set(Keys::kOnlineDelete, std::to_string(kDeleteInterval));
section.set(Keys::kOnlineDelete, std::to_string(deleteInterval));
return cfg;
}