aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-02-10qt: Translation update pre-rc5v0.12.0rc5Wladimir J. van der Laan
2016-02-10doc: Release notes update pre-rc5Wladimir J. van der Laan
2016-02-10Changed getnetworkhps value to double to avoid overflow.instagibbs
Github-Pull; #7480 Rebased-From: 993d089e82fc045d7b0f23e1a5dc934cba0e3306
2016-02-10[rpc-tests] Change solve() to use rehashmrbandrews
Github-Pull: #7468 Rebased-From: 7689041c03278a09c88a2bb78cd00217f6d4b1de
2016-02-10Fix spelling: misbeha{b,v}ingMatt
Github-Pull: #7469 Rebased-From: 0830552673e37142599de897e87510f2f9866e1e
2016-02-10Correctly report high-S violationsPieter Wuille
Github-Pull: #7500 Rebased-From: 9d95187d5ddee56b6dfb55985008bdf70aed31f2
2016-02-10Update the wallet best block marker when pruningPieter Wuille
Github-Pull: #7502 Rebased-From: e4eebb604e19f67b0c7a483b1ded1229d75ecdd3
2016-02-10wallet: Ignore MarkConflict if block hash is not knownWladimir J. van der Laan
If number of conflict confirms cannot be determined, this means that the block is still unknown or not yet part of the main chain, for example during a reindex. Do nothing in that case, instead of crash with an assertion. Fixes #7234. Github-Pull: #7491 Rebased-From: 40e7b61835cbe5fd471d0b4b71972526bf0e523c
2016-02-09qt: Translations update pre-rc4v0.12.0rc4Wladimir J. van der Laan
2016-02-09doc: Update release notes for rc4 changesWladimir J. van der Laan
2016-02-09Update nQueuedValidatedHeaders after peer disconnectionSuhas Daftuar
Github-Pull: #7482 Rebased-From: 301bc7bc7e83f4c268c1722558b07dbb5b55fa92
2016-02-09rpc: Add WWW-Authenticate header to 401 responseWladimir J. van der Laan
A WWW-Authenticate header must be present in the 401 response to make clients know that they can authenticate, and how. WWW-Authenticate: Basic realm="jsonrpc" Fixes #7462. Github-Pull: #7472 Rebased-From: 7c06fbd8f58058d77c3e9da841811201d2e45e92
2016-02-08[doc] Update release-process.mdMarcoFalke
Conflicts: doc/release-process.md Github-Pull: #7465 Rebased-From: fa616c2fedd19d8e88f042abd5e99ac9595923df
2016-02-05doc: add PR authors to release notesWladimir J. van der Laan
Take full names from github API if available, otherwise github username.
2016-02-03qt: translations update pre-rc3v0.12.0rc3Wladimir J. van der Laan
2016-02-03doc: update release notes for rc3Wladimir J. van der Laan
2016-02-03[qt] Peertable: Increase SUBVERSION_COLUMN_WIDTHMarcoFalke
Github-Pull: #7384 Rebased-From: faa9011d09d7429b97ec7595f9f77abf8ea770d3
2016-02-03Merge #7440: [0.12] Rename permitrbf to mempoolreplacement and provide ↵Wladimir J. van der Laan
minimal string-list forward compatibility af9f564 release-notes: Update for replacebyfee->mempoolreplacement rename (Luke Dashjr) 4ad418b Rename replacebyfee=opt-in to mempoolreplacement=fee (Luke Dashjr) b2287a7 release-notes: Update for permitrbf->replacebyfee rename (Luke Dashjr) 5f456a6 Simplify check for replacebyfee=opt-in (Luke Dashjr) e8d19ab Accept replacebyfee=opt-in for turning on opt-in RBF (Luke Dashjr) 1205f87 Rename permitrbf to replacebyfee (Luke Dashjr)
2016-02-01release-notes: Update for replacebyfee->mempoolreplacement renameLuke Dashjr
2016-02-01Rename replacebyfee=opt-in to mempoolreplacement=feeLuke Dashjr
2016-02-01Add whitelistforcerelay to control forced relaying. [#7099 redux]Gregory Maxwell
- Add whitelistforcerelay to control forced relaying. Also renames whitelistalwaysrelay. Nodes relay all transactions from whitelisted peers, this gets in the way of some useful reasons for whitelisting peers-- for example, bypassing bandwidth limitations. The purpose of this forced relaying is for specialized gateway applications where a node is being used as a P2P connection filter and multiplexer, but where you don't want it getting in the way of (re-)broadcast. This change makes it configurable with whitelistforcerelay. - Blacklist -whitelistalwaysrelay; replaced by -whitelistrelay. Github-Pull: #7439 Rebased-From: 325c725fb6205e38142914acb9ed1733d8482d46 89d113e02a83617b4e971c160d47551476dacc71
2016-02-01Merge #7438: Do not absolutely protect local peers; decide group ties based ↵Wladimir J. van der Laan
on time. 8e09f91 Decide eviction group ties based on time. (Gregory Maxwell) 46dbcd4 Do not absolutely protect local peers from eviction. (Gregory Maxwell)
2016-01-29release-notes: Update for permitrbf->replacebyfee renameLuke Dashjr
2016-01-29Simplify check for replacebyfee=opt-inLuke Dashjr
2016-01-29Accept replacebyfee=opt-in for turning on opt-in RBFLuke Dashjr
Basic forward-compatibility with more flexible parameters like fss
2016-01-29Rename permitrbf to replacebyfeeLuke Dashjr
"permit" is currently used to configure transaction filtering, whereas replacement is more to do with the memory pool state than the transaction itself.
2016-01-28Decide eviction group ties based on time.Gregory Maxwell
This corrects a bug the case of tying group size where the code may fail to select the group with the newest member. Since newest time is the final selection criteria, failing to break ties on it on the step before can undermine the final selection. Tied netgroups are very common.
2016-01-28Do not absolutely protect local peers from eviction.Gregory Maxwell
With automatic tor HS support in place we should probably not be providing absolute protection for local peers, since HS inbound could be used to attack pretty easily. Instead, this counts on the latency metric inside AttemptToEvictConnection to privilege actually local peers.
2016-01-28net: Hardcoded seeds update January 2016Wladimir J. van der Laan
Github-Pull: #7415 Rebased-From: 4818dba90074f213efa0fa7faf577ce5fb02eaee
2016-01-27Merge #7416: doc: Explain effects of -prune=<n> parameter in release notesWladimir J. van der Laan
8c5f903 doc: In release notes, reduce length of pruning section (xor-freenet) 15c0263 doc: Minor spelling fix (xor-freenet) 54d3907 doc: Fix wrong claims about blockchain reorganization with pruning (xor-freenet) a683d20 doc: Minor sentence length / capitalization fixes (xor-freenet) 58e3abf doc: In release notes, increase estimate of disk usage with pruning (xor-freenet) be4b474 doc: In release notes, do not claim that pruning is leeching (xor-freenet) 46d7eb6 doc: Fix minimal disk usage with pruning enabled (xor-freenet) fe074cc doc: Explain effects of -prune=<n> parameter in release notes (xor-freenet)
2016-01-27doc: In release notes, reduce length of pruning sectionxor-freenet
2016-01-27doc: Minor spelling fixxor-freenet
2016-01-27doc: Fix wrong claims about blockchain reorganization with pruningxor-freenet
2016-01-27doc: Minor sentence length / capitalization fixesxor-freenet
2016-01-27Merge #7422: Improve section title in release-notes.mdWladimir J. van der Laan
42b521d Update release-notes.md (฿tcDrak)
2016-01-27release: Add security/export checks to gitian and fix current failuresCory Fields
- fix parsing of BIND_NOW with older readelf - add _IO_stdin_used to ignored exports For details see: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=634261#109 - add check-symbols and check-security make targets These are not added to the default checks because some of them depend on release-build configs. - always link librt for glibc back-compat builds glibc absorbed clock_gettime in 2.17. librt (its previous location) is safe to link in anyway for back-compat. Fixes #7420 - add security/symbol checks to gitian Github-Pull: #7424 Rebased-From: cd27bf51e06a8d79790a631696355bd05751b0aa 475813ba5b208eb9a5d027eb628a717cc123ef4f f3d3eaf78eb51238d799d8f20a585550d1567719 a8ce872118c4807465629aecb9e4f3d72d999ccb a81c87fafce43e49cc2307947e3951b84be7ca9a
2016-01-27Merge #7421: [doc] Release notes update for 0.12Wladimir J. van der Laan
65d384f doc: Update release notes for 0.12 (Suhas Daftuar)
2016-01-26doc: Update release notes for 0.12Suhas Daftuar
Update and reword BIP 125 section Mention changes to banlist (clearbanned/setban) Pruning nodes can relay
2016-01-26Update release-notes.md฿tcDrak
2016-01-26doc: In release notes, increase estimate of disk usage with pruningxor-freenet
Jonas Schnelli recommended this to account for growth of utxo set, debug log, etc.
2016-01-26doc: In release notes, do not claim that pruning is leechingxor-freenet
Peter Todd says it does not matter currently.
2016-01-25doc: Fix minimal disk usage with pruning enabledxor-freenet
2016-01-25doc: Explain effects of -prune=<n> parameter in release notesxor-freenet
As discussed in the mailing list thread: [bitcoin-dev] Bitcoin Core 0.12.0 release candidate 1 available in the replies to this message: http://lists.linuxfoundation.org/pipermail/bitcoin-dev/2016-January/012276.html Please review thoroughly, I'm a newbie.
2016-01-22doc: forgot #7222 in release notesWladimir J. van der Laan
2016-01-22doc: Add commits since rc1 to release notesv0.12.0rc2Wladimir J. van der Laan
2016-01-22qt: pre-rc2 translations updateWladimir J. van der Laan
2016-01-22Merge #7371: [0.12] backportsWladimir J. van der Laan
236686b [init] Add missing help for args (MarcoFalke) 44438a1 [init] Fix error message of maxtxfee invalid amount (MarcoFalke) a74fa1f [Wallet] Transaction View: LastMonth calculation fixed (crowning-)
2016-01-22Merge #7387: Get rid of inaccurate ScriptSigArgsExpectedWladimir J. van der Laan
52b29dc Get rid of inaccurate ScriptSigArgsExpected (Pieter Wuille)
2016-01-22[qt] Windows: Make rpcconsole monospace font largerMarcoFalke
Github-Pull: #7364 Rebased-From: fa6a59dd397e62e850fc57df05cd6d117fbdcd82
2016-01-21Get rid of inaccurate ScriptSigArgsExpectedPieter Wuille