mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-24 04:55:52 +00:00
Fix warning
This commit is contained in:
@@ -818,7 +818,7 @@ int Pathfinder::getPathsOut (const uint160& currencyID, const uint160& accountID
|
|||||||
return it->second;
|
return it->second;
|
||||||
|
|
||||||
int aFlags = mLedger->getSLEi(Ledger::getAccountRootIndex(accountID))->getFieldU32(sfFlags);
|
int aFlags = mLedger->getSLEi(Ledger::getAccountRootIndex(accountID))->getFieldU32(sfFlags);
|
||||||
bool bAuthRequired = aFlags & lsfRequireAuth;
|
bool const bAuthRequired = (aFlags & lsfRequireAuth) != 0;
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
AccountItems& rippleLines (mRLCache->getRippleLines (accountID));
|
AccountItems& rippleLines (mRLCache->getRippleLines (accountID));
|
||||||
|
|||||||
Reference in New Issue
Block a user