minor naming change

Signed-off-by: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com>
This commit is contained in:
Pratik Mankawde
2026-02-24 15:24:15 +00:00
parent f1723d8647
commit e2ee835952

View File

@@ -452,13 +452,13 @@ private:
auto
checkoutLedger()
{
if (!lgrdb_)
if (!ledgerDb_)
{
constexpr auto msg = "Ledger database is not available";
JLOG(j_.fatal()) << msg;
Throw<std::runtime_error>(msg);
}
return lgrdb_->checkoutDb();
return ledgerDb_->checkoutDb();
}
/**