diff options
author | 2014-10-10 11:37:44 +0000 | |
---|---|---|
committer | 2014-10-10 11:37:44 +0000 | |
commit | 253e26e979a26330e9c7374dd86d0ac153edfed7 (patch) | |
tree | e337cf45b4ae3b575930cb2a20015c65b6e8ae29 /net-p2p/bitcoind/files | |
parent | Address anti-spam issue, bug #524512 (diff) | |
download | historical-253e26e979a26330e9c7374dd86d0ac153edfed7.tar.gz historical-253e26e979a26330e9c7374dd86d0ac153edfed7.tar.bz2 historical-253e26e979a26330e9c7374dd86d0ac153edfed7.zip |
Address anti-spam issue, bug #524512
Package-Manager: portage-2.2.8-r2/cvs/Linux x86_64
Manifest-Sign-Key: 0xF52D4BBA
Diffstat (limited to 'net-p2p/bitcoind/files')
-rw-r--r-- | net-p2p/bitcoind/files/0.9.x-ljr_noblacklist.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/net-p2p/bitcoind/files/0.9.x-ljr_noblacklist.patch b/net-p2p/bitcoind/files/0.9.x-ljr_noblacklist.patch new file mode 100644 index 000000000000..35194662ecd2 --- /dev/null +++ b/net-p2p/bitcoind/files/0.9.x-ljr_noblacklist.patch @@ -0,0 +1,12 @@ +diff --git a/src/script.cpp b/src/script.cpp +index 24bbbad..a60d8b6 100644 +--- a/src/script.cpp ++++ b/src/script.cpp +@@ -1870,6 +1870,7 @@ bool fIsBareMultisigStd = false; + + const char *CScript::IsBlacklisted() const + { ++ return false; + if (this->size() >= 7 && this->at(0) == OP_DUP) + { + // pay-to-pubkeyhash |