Rename Wallet to LocalCredentials

This commit is contained in:
Vinnie Falco
2013-06-15 18:01:38 -07:00
parent 8aab3645cb
commit 8a6ce5de68
19 changed files with 123 additions and 126 deletions

View File

@@ -662,7 +662,7 @@ Json::Value RPCHandler::doDataDelete (Json::Value jvRequest, int& cost, ScopedLo
Json::Value ret = Json::Value (Json::objectValue);
if (theApp->getWallet ().dataDelete (strKey))
if (theApp->getLocalCredentials ().dataDelete (strKey))
{
ret["key"] = strKey;
}
@@ -691,7 +691,7 @@ Json::Value RPCHandler::doDataFetch (Json::Value jvRequest, int& cost, ScopedLoc
ret["key"] = strKey;
if (theApp->getWallet ().dataFetch (strKey, strValue))
if (theApp->getLocalCredentials ().dataFetch (strKey, strValue))
ret["value"] = strValue;
return ret;
@@ -714,7 +714,7 @@ Json::Value RPCHandler::doDataStore (Json::Value jvRequest, int& cost, ScopedLoc
Json::Value ret = Json::Value (Json::objectValue);
if (theApp->getWallet ().dataStore (strKey, strValue))
if (theApp->getLocalCredentials ().dataStore (strKey, strValue))
{
ret["key"] = strKey;
ret["value"] = strValue;