Implement NoRipple transaction and trust line flags.

This commit is contained in:
JoelKatz
2013-09-22 15:14:47 -07:00
parent b0c37d62fe
commit 1f372a3b08
5 changed files with 31 additions and 2 deletions

View File

@@ -1109,6 +1109,10 @@ Json::Value RPCHandler::doAccountLines (Json::Value params, LoadType* loadType,
jPeer["authorized"] = true;
if (line->getAuthPeer())
jPeer["peer_authorized"] = true;
if (line->getNoRipple())
jPeer["no_ripple"] = true;
if (line->getNoRipplePeer())
jPeer["no_ripple_peer"] = true;
}
}