fix dupe
This commit is contained in:
@@ -492,26 +492,6 @@ int32_t gettxout_scriptPubKey(uint8_t *scriptPubKey,int32_t maxsize,uint256 txid
|
|||||||
return(-1);
|
return(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Getscriptaddress(char *destaddr,const CScript &scriptPubKey)
|
|
||||||
{
|
|
||||||
CTxDestination address; txnouttype whichType;
|
|
||||||
if ( ExtractDestination(scriptPubKey,address) != 0 )
|
|
||||||
{
|
|
||||||
strcpy(destaddr,(char *)CBitcoinAddress(address).ToString().c_str());
|
|
||||||
return(true);
|
|
||||||
}
|
|
||||||
fprintf(stderr,"ExtractDestination failed\n");
|
|
||||||
return(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool pubkey2address(char *destaddr,uint8_t *pubkey33)
|
|
||||||
{
|
|
||||||
std::vector<uint8_t>pk; int32_t i;
|
|
||||||
for (i=0; i<33; i++)
|
|
||||||
pk.push_back(pubkey33[i]);
|
|
||||||
return(Getscriptaddress(destaddr,CScript() << pk << OP_CHECKSIG));
|
|
||||||
}
|
|
||||||
|
|
||||||
UniValue gettxoutproof(const UniValue& params, bool fHelp)
|
UniValue gettxoutproof(const UniValue& params, bool fHelp)
|
||||||
{
|
{
|
||||||
if (fHelp || (params.size() != 1 && params.size() != 2))
|
if (fHelp || (params.size() != 1 && params.size() != 2))
|
||||||
|
|||||||
Reference in New Issue
Block a user