mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Remove unused parameters to accountFromString.
This commit is contained in:
committed by
Nik Bougalis
parent
f237187b0d
commit
c2814308f1
@@ -47,8 +47,8 @@ Json::Value doAccountOffers (RPC::Context& context)
|
||||
int const iIndex (bIndex ? params[jss::account_index].asUInt () : 0);
|
||||
RippleAddress rippleAddress;
|
||||
|
||||
Json::Value const jv (RPC::accountFromString (ledger, rippleAddress, bIndex,
|
||||
strIdent, iIndex, false, context.netOps));
|
||||
Json::Value const jv = RPC::accountFromString (
|
||||
rippleAddress, bIndex, strIdent, iIndex, false);
|
||||
if (! jv.empty ())
|
||||
{
|
||||
for (Json::Value::const_iterator it (jv.begin ()); it != jv.end (); ++it)
|
||||
|
||||
Reference in New Issue
Block a user