From 9f47402b63a144cb9b87b7b77ce0712bea081434 Mon Sep 17 00:00:00 2001 From: jacobbdavis1991 <35181018+jacobbdavis1991@users.noreply.github.com> Date: Fri, 19 Jan 2018 09:54:46 -0800 Subject: [PATCH] Update rpcrawtransaction.cpp --- src/rpcrawtransaction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index 95a4406..78bcc36 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -239,7 +239,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())));