|
|
|
@ -109,20 +109,14 @@ UniValue getinfo(const UniValue& params, bool fHelp)
@@ -109,20 +109,14 @@ UniValue getinfo(const UniValue& params, bool fHelp)
|
|
|
|
|
#ifdef ENABLE_WALLET |
|
|
|
|
class DescribeAddressVisitor : public boost::static_visitor<UniValue> |
|
|
|
|
{ |
|
|
|
|
private: |
|
|
|
|
isminetype mine; |
|
|
|
|
|
|
|
|
|
public: |
|
|
|
|
DescribeAddressVisitor(isminetype mineIn) : mine(mineIn) {} |
|
|
|
|
|
|
|
|
|
UniValue operator()(const CNoDestination &dest) const { return UniValue(UniValue::VOBJ); } |
|
|
|
|
|
|
|
|
|
UniValue operator()(const CKeyID &keyID) const { |
|
|
|
|
UniValue obj(UniValue::VOBJ); |
|
|
|
|
CPubKey vchPubKey; |
|
|
|
|
obj.push_back(Pair("isscript", false)); |
|
|
|
|
if (mine == ISMINE_SPENDABLE) { |
|
|
|
|
pwalletMain->GetPubKey(keyID, vchPubKey); |
|
|
|
|
if (pwalletMain->GetPubKey(keyID, vchPubKey)) { |
|
|
|
|
obj.push_back(Pair("pubkey", HexStr(vchPubKey))); |
|
|
|
|
obj.push_back(Pair("iscompressed", vchPubKey.IsCompressed())); |
|
|
|
|
} |
|
|
|
@ -131,10 +125,9 @@ public:
@@ -131,10 +125,9 @@ public:
|
|
|
|
|
|
|
|
|
|
UniValue operator()(const CScriptID &scriptID) const { |
|
|
|
|
UniValue obj(UniValue::VOBJ); |
|
|
|
|
CScript subscript; |
|
|
|
|
obj.push_back(Pair("isscript", true)); |
|
|
|
|
if (mine != ISMINE_NO) { |
|
|
|
|
CScript subscript; |
|
|
|
|
pwalletMain->GetCScript(scriptID, subscript); |
|
|
|
|
if (pwalletMain->GetCScript(scriptID, subscript)) { |
|
|
|
|
std::vector<CTxDestination> addresses; |
|
|
|
|
txnouttype whichType; |
|
|
|
|
int nRequired; |
|
|
|
@ -200,11 +193,9 @@ UniValue validateaddress(const UniValue& params, bool fHelp)
@@ -200,11 +193,9 @@ UniValue validateaddress(const UniValue& params, bool fHelp)
|
|
|
|
|
#ifdef ENABLE_WALLET |
|
|
|
|
isminetype mine = pwalletMain ? IsMine(*pwalletMain, dest) : ISMINE_NO; |
|
|
|
|
ret.push_back(Pair("ismine", (mine & ISMINE_SPENDABLE) ? true : false)); |
|
|
|
|
if (mine != ISMINE_NO) { |
|
|
|
|
ret.push_back(Pair("iswatchonly", (mine & ISMINE_WATCH_ONLY) ? true: false)); |
|
|
|
|
UniValue detail = boost::apply_visitor(DescribeAddressVisitor(mine), dest); |
|
|
|
|
ret.pushKVs(detail); |
|
|
|
|
} |
|
|
|
|
ret.push_back(Pair("iswatchonly", (mine & ISMINE_WATCH_ONLY) ? true: false)); |
|
|
|
|
UniValue detail = boost::apply_visitor(DescribeAddressVisitor(), dest); |
|
|
|
|
ret.pushKVs(detail); |
|
|
|
|
if (pwalletMain && pwalletMain->mapAddressBook.count(dest)) |
|
|
|
|
ret.push_back(Pair("account", pwalletMain->mapAddressBook[dest].name)); |
|
|
|
|
#endif |
|
|
|
|