mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-23 07:10:53 +00:00
refactor: Use STLedgerEntry type aliases instead of std::shared_ptr (#7282)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user