From 9d68f791dd84b40cb0f1b3b496aa8c12f2d94a87 Mon Sep 17 00:00:00 2001 From: svost Date: Tue, 5 May 2015 17:01:28 +0300 Subject: [PATCH] Fix boost::get usage with boost 1.58 --- src/rpcrawtransaction.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index a71871d..6a810fa 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -209,7 +209,7 @@ Value listunspent(const Array& params, bool fHelp) CTxDestination address; if (ExtractDestination(pk, address)) { - const CScriptID& hash = boost::get(address); + const CScriptID& hash = boost::get(address); CScript redeemScript; if (pwalletMain->GetCScript(hash, redeemScript)) entry.push_back(Pair("redeemScript", HexStr(redeemScript.begin(), redeemScript.end()))); -- 1.7.1