Skip to content

Commit

Permalink
backport fix for libboost from bitcoin
Browse files Browse the repository at this point in the history
commit 824c011d165cc352088f8e238f66b829b0e654ed
  • Loading branch information
brozkeff committed Dec 26, 2019
1 parent f751917 commit 4ccb511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpcrawtransaction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ Value listunspent(const Array& params, bool fHelp)
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())));
Expand Down

0 comments on commit 4ccb511

Please sign in to comment.