|
|
@ -57,7 +57,7 @@ void WalletTxToJSON(const CWalletTx& wtx, Object& entry) |
|
|
|
BOOST_FOREACH(const uint256& conflict, wtx.GetConflicts()) |
|
|
|
BOOST_FOREACH(const uint256& conflict, wtx.GetConflicts()) |
|
|
|
conflicts.push_back(conflict.GetHex()); |
|
|
|
conflicts.push_back(conflict.GetHex()); |
|
|
|
entry.push_back(Pair("walletconflicts", conflicts)); |
|
|
|
entry.push_back(Pair("walletconflicts", conflicts)); |
|
|
|
entry.push_back(Pair("time", (int64_t)wtx.GetTxTime())); |
|
|
|
entry.push_back(Pair("time", wtx.GetTxTime())); |
|
|
|
entry.push_back(Pair("timereceived", (int64_t)wtx.nTimeReceived)); |
|
|
|
entry.push_back(Pair("timereceived", (int64_t)wtx.nTimeReceived)); |
|
|
|
BOOST_FOREACH(const PAIRTYPE(string,string)& item, wtx.mapValue) |
|
|
|
BOOST_FOREACH(const PAIRTYPE(string,string)& item, wtx.mapValue) |
|
|
|
entry.push_back(Pair(item.first, item.second)); |
|
|
|
entry.push_back(Pair(item.first, item.second)); |
|
|
@ -1167,7 +1167,7 @@ void AcentryToJSON(const CAccountingEntry& acentry, const string& strAccount, Ar |
|
|
|
Object entry; |
|
|
|
Object entry; |
|
|
|
entry.push_back(Pair("account", acentry.strAccount)); |
|
|
|
entry.push_back(Pair("account", acentry.strAccount)); |
|
|
|
entry.push_back(Pair("category", "move")); |
|
|
|
entry.push_back(Pair("category", "move")); |
|
|
|
entry.push_back(Pair("time", (int64_t)acentry.nTime)); |
|
|
|
entry.push_back(Pair("time", acentry.nTime)); |
|
|
|
entry.push_back(Pair("amount", ValueFromAmount(acentry.nCreditDebit))); |
|
|
|
entry.push_back(Pair("amount", ValueFromAmount(acentry.nCreditDebit))); |
|
|
|
entry.push_back(Pair("otheraccount", acentry.strOtherAccount)); |
|
|
|
entry.push_back(Pair("otheraccount", acentry.strOtherAccount)); |
|
|
|
entry.push_back(Pair("comment", acentry.strComment)); |
|
|
|
entry.push_back(Pair("comment", acentry.strComment)); |
|
|
@ -1912,9 +1912,9 @@ Value getwalletinfo(const Array& params, bool fHelp) |
|
|
|
obj.push_back(Pair("walletversion", pwalletMain->GetVersion())); |
|
|
|
obj.push_back(Pair("walletversion", pwalletMain->GetVersion())); |
|
|
|
obj.push_back(Pair("balance", ValueFromAmount(pwalletMain->GetBalance()))); |
|
|
|
obj.push_back(Pair("balance", ValueFromAmount(pwalletMain->GetBalance()))); |
|
|
|
obj.push_back(Pair("txcount", (int)pwalletMain->mapWallet.size())); |
|
|
|
obj.push_back(Pair("txcount", (int)pwalletMain->mapWallet.size())); |
|
|
|
obj.push_back(Pair("keypoololdest", (int64_t)pwalletMain->GetOldestKeyPoolTime())); |
|
|
|
obj.push_back(Pair("keypoololdest", pwalletMain->GetOldestKeyPoolTime())); |
|
|
|
obj.push_back(Pair("keypoolsize", (int)pwalletMain->GetKeyPoolSize())); |
|
|
|
obj.push_back(Pair("keypoolsize", (int)pwalletMain->GetKeyPoolSize())); |
|
|
|
if (pwalletMain->IsCrypted()) |
|
|
|
if (pwalletMain->IsCrypted()) |
|
|
|
obj.push_back(Pair("unlocked_until", (int64_t)nWalletUnlockTime)); |
|
|
|
obj.push_back(Pair("unlocked_until", nWalletUnlockTime)); |
|
|
|
return obj; |
|
|
|
return obj; |
|
|
|
} |
|
|
|
} |
|
|
|