mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
fix bug in error propagation for account badSeed (RIPD-1248)
This commit is contained in:
@@ -63,7 +63,7 @@ Json::Value doAccountObjects (RPC::Context& context)
|
||||
if (auto jv = RPC::accountFromString (accountID, strIdent))
|
||||
{
|
||||
for (auto it = jv.begin (); it != jv.end (); ++it)
|
||||
result[it.memberName ()] = it.key ();
|
||||
result[it.memberName ()] = *it;
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user