add address and account information to listunspent
This commit is contained in:
parent
65497f4ee7
commit
550479b09f
1 changed files with 7 additions and 0 deletions
|
@ -225,6 +225,13 @@ Value listunspent(const Array& params, bool fHelp)
|
||||||
Object entry;
|
Object entry;
|
||||||
entry.push_back(Pair("txid", out.tx->GetHash().GetHex()));
|
entry.push_back(Pair("txid", out.tx->GetHash().GetHex()));
|
||||||
entry.push_back(Pair("vout", out.i));
|
entry.push_back(Pair("vout", out.i));
|
||||||
|
CTxDestination address;
|
||||||
|
if (ExtractDestination(out.tx->vout[out.i].scriptPubKey, address))
|
||||||
|
{
|
||||||
|
entry.push_back(Pair("address", CBitcoinAddress(address).ToString()));
|
||||||
|
if (pwalletMain->mapAddressBook.count(address))
|
||||||
|
entry.push_back(Pair("account", pwalletMain->mapAddressBook[address]));
|
||||||
|
}
|
||||||
entry.push_back(Pair("scriptPubKey", HexStr(pk.begin(), pk.end())));
|
entry.push_back(Pair("scriptPubKey", HexStr(pk.begin(), pk.end())));
|
||||||
if (pk.IsPayToScriptHash())
|
if (pk.IsPayToScriptHash())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue