Browse Source

Merge pull request #6076

8b08d95 wallet: fix boost::get usage with boost 1.58 (Cory Fields)
0.13
Wladimir J. van der Laan 10 years ago
parent
commit
6c97fd1054
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 2
      src/wallet/rpcwallet.cpp

2
src/wallet/rpcwallet.cpp

@ -2330,7 +2330,7 @@ Value listunspent(const Array& params, bool fHelp) @@ -2330,7 +2330,7 @@ Value listunspent(const Array& params, bool fHelp)
if (pk.IsPayToScriptHash()) {
CTxDestination address;
if (ExtractDestination(pk, address)) {
const CScriptID& hash = boost::get<const CScriptID&>(address);
const CScriptID& hash = boost::get<CScriptID>(address);
CScript redeemScript;
if (pwalletMain->GetCScript(hash, redeemScript))
entry.push_back(Pair("redeemScript", HexStr(redeemScript.begin(), redeemScript.end())));

Loading…
Cancel
Save