refactor: Use STLedgerEntry type aliases instead of std::shared_ptr (#7282)

This commit is contained in:
Vito Tumas
2026-06-01 17:27:13 +02:00
committed by GitHub
parent 0fffe23abc
commit 109b649106
273 changed files with 719 additions and 1475 deletions

View File

@@ -280,13 +280,13 @@ Env::seq(Account const& account) const
return sle->getFieldU32(sfSequence);
}
std::shared_ptr<SLE const>
SLE::const_pointer
Env::le(Account const& account) const
{
return le(keylet::account(account.id()));
}
std::shared_ptr<SLE const>
SLE::const_pointer
Env::le(Keylet const& k) const
{
return current()->read(k);