aboutsummaryrefslogtreecommitdiffstats
path: root/testing/bitcoin/boost-STATIC_ASSERTION_FAILURE.patch
diff options
context:
space:
mode:
authorStuart Cardall <developer@it-offshore.co.uk>2015-09-17 22:24:46 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2015-09-18 14:20:34 +0200
commit2b429a74863832616af2dd1818744eff83b43c0d (patch)
tree64d1e9fdde5afc1dabe4387322c19fc122449a0d /testing/bitcoin/boost-STATIC_ASSERTION_FAILURE.patch
parent53f52624a9a680e961e6a01bfabd7f9410483327 (diff)
downloadaports-2b429a74863832616af2dd1818744eff83b43c0d.tar.bz2
aports-2b429a74863832616af2dd1818744eff83b43c0d.tar.xz
testing/bitcoin: update to 0.11.0
https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-0.11.0.md
Diffstat (limited to 'testing/bitcoin/boost-STATIC_ASSERTION_FAILURE.patch')
-rw-r--r--testing/bitcoin/boost-STATIC_ASSERTION_FAILURE.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/testing/bitcoin/boost-STATIC_ASSERTION_FAILURE.patch b/testing/bitcoin/boost-STATIC_ASSERTION_FAILURE.patch
deleted file mode 100644
index 07589c74f1..0000000000
--- a/testing/bitcoin/boost-STATIC_ASSERTION_FAILURE.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- bitcoin-0.10.1/src/rpcrawtransaction.cpp
-+++ bitcoin-0.10.1/src/rpcrawtransaction.cpp.new
-@@ -287,7 +287,7 @@
- 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())));