Skip to content

Commit

Permalink
Merge pull request bitcoin#1 from FeatherCoin/master-0.8
Browse files Browse the repository at this point in the history
Update rpcrawtransaction.cpp
  • Loading branch information
wellenreiter01 committed Oct 2, 2015
2 parents 1b7a5e9 + 6dba97e commit fddd577
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 @@ -239,7 +239,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 fddd577

Please sign in to comment.