aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2015-04-28 11:38:50 -0400
committerCory Fields <cory-nospam-@coryfields.com>2015-04-28 11:45:10 -0400
commit8b08d9530b93c7a98e7387167ecd2cd5b0563bfb (patch)
treef432349bd96920810ab55b1b5256332267309ecc /src
parent7bf5d5efa60c89c0e0c353dddc2a76fe4f243808 (diff)
downloadbitcoin-8b08d9530b93c7a98e7387167ecd2cd5b0563bfb.tar.xz
wallet: fix boost::get usage with boost 1.58
Diffstat (limited to 'src')
-rw-r--r--src/wallet/rpcwallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp
index c31c09d922..dd5240e3c0 100644
--- a/src/wallet/rpcwallet.cpp
+++ b/src/wallet/rpcwallet.cpp
@@ -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())));