mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-23 07:15:29 +01:00
Merge pull request #6076
8b08d95
wallet: fix boost::get usage with boost 1.58 (Cory Fields)
This commit is contained in:
commit
6c97fd1054
1 changed files with 1 additions and 1 deletions
|
@ -2330,7 +2330,7 @@ Value listunspent(const Array& params, bool fHelp)
|
||||||
if (pk.IsPayToScriptHash()) {
|
if (pk.IsPayToScriptHash()) {
|
||||||
CTxDestination address;
|
CTxDestination address;
|
||||||
if (ExtractDestination(pk, address)) {
|
if (ExtractDestination(pk, address)) {
|
||||||
const CScriptID& hash = boost::get<const CScriptID&>(address);
|
const CScriptID& hash = boost::get<CScriptID>(address);
|
||||||
CScript redeemScript;
|
CScript redeemScript;
|
||||||
if (pwalletMain->GetCScript(hash, redeemScript))
|
if (pwalletMain->GetCScript(hash, redeemScript))
|
||||||
entry.push_back(Pair("redeemScript", HexStr(redeemScript.begin(), redeemScript.end())));
|
entry.push_back(Pair("redeemScript", HexStr(redeemScript.begin(), redeemScript.end())));
|
||||||
|
|
Loading…
Add table
Reference in a new issue