summarylogtreecommitdiffstats
path: root/fixing-boost.patch
diff options
context:
space:
mode:
Diffstat (limited to 'fixing-boost.patch')
-rw-r--r--fixing-boost.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/fixing-boost.patch b/fixing-boost.patch
deleted file mode 100644
index ec5223cf20d6..000000000000
--- a/fixing-boost.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -aur dogecoin-1.8.2.pristine/src/rpcrawtransaction.cpp dogecoin-1.8.2.new/src/rpcrawtransaction.cpp
---- dogecoin-1.8.2.pristine/src/rpcrawtransaction.cpp 2015-01-17 19:22:54.000000000 +0100
-+++ dogecoin-1.8.2.new/src/rpcrawtransaction.cpp 2015-05-24 10:57:09.750066113 +0200
-@@ -296,7 +296,7 @@
- CTxDestination address;
- if (ExtractDestination(pk, address))
- {
-- const CScriptID& hash = boost::get<const CScriptID&>(address);
-+ const CScriptID& hash = boost::relaxed_get<const CScriptID&>(address);
- CScript redeemScript;
- if (pwalletMain->GetCScript(hash, redeemScript))
- entry.push_back(Pair("redeemScript", HexStr(redeemScript.begin(), redeemScript.end())));