aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bugfix: Correct links for Xcode downloadLuke Dashjr2015-06-052-2/+2
|
* Merge pull request #6194Wladimir J. van der Laan2015-05-292-2/+3
|\ | | | | | | ee9a2e4 Fix walletbackup.py after directory restructuring (Suhas Daftuar)
| * Fix walletbackup.py after directory restructuringSuhas Daftuar2015-05-272-2/+3
| | | | | | | | Also add walletbackup.py to rpc-tests.sh
* | Merge pull request #6173Wladimir J. van der Laan2015-05-272-8/+10
|\ \ | |/ |/| | | e697343 Chainparams: Explicit CMessageHeader::MessageStartChars to functions in main: (Jorge Timón)
| * Chainparams: Explicit CMessageHeader::MessageStartChars to functions in main:Jorge Timón2015-05-272-8/+10
|/ | | | | -UndoWriteToDisk -WriteBlockToDisk
* Merge pull request #5669Wladimir J. van der Laan2015-05-2716-114/+128
|\ | | | | | | | | da29ecb Consensus: MOVEONLY: Move CValidationState from main consensus/validation (jtimon) 27afcd8 Consensus: Refactor: Decouple CValidationState from main::AbortNode() (Cory Fields)
| * Consensus: MOVEONLY: Move CValidationState from main consensus/validationjtimon2015-05-1516-81/+101
| |
| * Consensus: Refactor: Decouple CValidationState from main::AbortNode()Cory Fields2015-05-152-33/+27
| |
* | Merge pull request #6189Wladimir J. van der Laan2015-05-271-0/+67
|\ \ | | | | | | | | | 44e1aad Autoprune release notes included (mrbandrews)
| * | Autoprune release notes includedmrbandrews2015-05-261-0/+67
| | |
* | | Merge pull request #6097Wladimir J. van der Laan2015-05-2745-124/+125
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7b7f258 rpc-tests: remove python-bitcoinrpc directory (Jonas Schnelli) a85b2e2 pull-tester/rpc-tests.sh: disable script_test.py test (Jonas Schnelli) 3e875b1 pull-tester/rpc-tests.sh: allow passing throug of arguments (Jonas Schnelli) 00706a5 update rpc-tests readme.md (Jonas Schnelli) 344e08e extend rpc-tests.sh control script with non-travis tests (Jonas Schnelli) 64937fe [QA] restructure rpc tests directory (Jonas Schnelli)
| * | | rpc-tests: remove python-bitcoinrpc directoryJonas Schnelli2015-05-218-23/+2
| | | | | | | | | | | | | | | | place authproxy.py at same level as other utility classes
| * | | pull-tester/rpc-tests.sh: disable script_test.py testJonas Schnelli2015-05-191-1/+1
| | | |
| * | | pull-tester/rpc-tests.sh: allow passing throug of argumentsJonas Schnelli2015-05-183-10/+14
| | | |
| * | | update rpc-tests readme.mdJonas Schnelli2015-05-181-8/+20
| | | |
| * | | extend rpc-tests.sh control script with non-travis testsJonas Schnelli2015-05-181-1/+24
| | | |
| * | | [QA] restructure rpc tests directoryJonas Schnelli2015-05-1842-88/+71
| | | | | | | | | | | | | | | | * move non-test classes to subdir `test-framework`
* | | | Merge pull request #6190Wladimir J. van der Laan2015-05-271-0/+0
|\ \ \ \ | | | | | | | | | | | | | | | 1fe4c4f gitian-downloader: Update luke-jr's key (Luke Dashjr)
| * | | | gitian-downloader: Update luke-jr's keyLuke Dashjr2015-05-261-0/+0
| | | | |
* | | | | Merge pull request #6153Wladimir J. van der Laan2015-05-271-0/+4
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 8c35b6f Parameter interaction: disable upnp if -proxy set (Wladimir J. van der Laan)
| * | | | | Parameter interaction: disable upnp if -proxy setWladimir J. van der Laan2015-05-181-0/+4
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To protect privacy, do not use UPNP when a proxy is set. The user may still specify -listen=1 to listen locally (for a hidden service), so don't rely on this happening through -listen. Fixes #2927.
* | | | | Merge pull request #6174Wladimir J. van der Laan2015-05-272-0/+73
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 213f257 doc: add translation strings policy (Wladimir J. van der Laan)
| * | | | | doc: add translation strings policyWladimir J. van der Laan2015-05-232-0/+73
| | | | | |
* | | | | | Merge pull request #6186Wladimir J. van der Laan2015-05-273-9/+18
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | | | | | | | | | | | | b45c50c Fix two problems in CSubNet parsing (Wladimir J. van der Laan) 19e8d7b Simplify code for CSubnet (Wladimir J. van der Laan)
| * | | | | Fix two problems in CSubNet parsingWladimir J. van der Laan2015-05-262-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix two CSubNet constructor problems: - The use of `/x` where 8 does not divide x was broken, due to a bit-order issue - The use of e.g. `1.2.3.4/24` where the netmasked bits in the network are not 0 was broken. Fix this by explicitly normalizing the netwok according to the bitmask. Also add tests for these cases. Fixes #6179. Thanks to @jonasschnelli for reporting and initial fix.
| * | | | | Simplify code for CSubnetWladimir J. van der Laan2015-05-262-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simplify the code by using CAddress.ip directly, instead of the reversed GetByte() semantics.
* | | | | | qt: Periodic translation updateWladimir J. van der Laan2015-05-2646-227/+577
| | | | | |
* | | | | | doc: Add preliminary changelog for 0.11 to release notesWladimir J. van der Laan2015-05-261-0/+173
| | | | | |
* | | | | | Merge pull request #5976Wladimir J. van der Laan2015-05-261-5/+29
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | 8ba7f84 Reduce download timeouts as blocks arrive (Suhas Daftuar)
| * | | | | | Reduce download timeouts as blocks arriveSuhas Daftuar2015-04-151-5/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Compare the block download timeout to what the timeout would be if calculated based on current time and current value of nQueuedValidatedHeaders, but ignoring other in-flight blocks from the same peer. If the calculation based on present conditions is shorter, then set that to be the time after which we disconnect the peer for not delivering this block.
* | | | | | | Merge pull request #6187Wladimir J. van der Laan2015-05-261-1/+0
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 8697ff3 Remove duplicate chainparams.h include from alert_tests (Michael Ford)
| * | | | | | | Remove duplicate chainparams.h include from alert_testsMichael Ford2015-05-261-1/+0
|/ / / / / / /
* | | | | | | Merge pull request #5947Wladimir J. van der Laan2015-05-264-0/+133
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | | | | | | | 36cba8f Alert if it is very likely we are getting a bad chain (Gavin Andresen)
| * | | | | | Alert if it is very likely we are getting a bad chainGavin Andresen2015-05-144-0/+133
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create a monitoring task that counts how many blocks have been found in the last four hours. If very few or too many have been found, an alert is triggered. "Very few" and "too many" are set based on a false positive rate of once every fifty years of constant running with constant hashing power, which works out to getting 5 or fewer or 48 or more blocks in four hours (instead of the average of 24). Only one alert per day is triggered, so if you get disconnected from the network (or are being Sybil'ed) -alertnotify will be triggered after 3.5 hours but you won't get another -alertnotify for 24 hours. Tested with a new unit test and by running on the main network with -debug=partitioncheck Run test/test_bitcoin --log_level=message to see the alert messages: WARNING: check your network connection, 3 blocks received in the last 4 hours (24 expected) WARNING: abnormally high number of blocks generated, 60 blocks received in the last 4 hours (24 expected) The -debug=partitioncheck debug.log messages look like: ThreadPartitionCheck : Found 22 blocks in the last 4 hours ThreadPartitionCheck : likelihood: 0.0777702
* | | | | | | Merge pull request #6159Wladimir J. van der Laan2015-05-241-4/+14
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | ffdda4e Catch errors on datadir lock and pidfile delete (Adam Weiss)
| * | | | | | | Catch errors on datadir lock and pidfile deleteAdam Weiss2015-05-221-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prevents bad permissions (or other fs related problems) from resulting in hard crashes with cryptic messages on startup and shutdown.
* | | | | | | | doc: Add historical release notes 0.9.5Wladimir J. van der Laan2015-05-241-0/+60
| |_|_|/ / / / |/| | | | | |
* | | | | | | Merge pull request #6098Wladimir J. van der Laan2015-05-225-5/+44
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | cc24610 Update Windows resource files (and add one for bitcoin-tx) (Luke Dashjr)
| * | | | | | | Update Windows resource files (and add one for bitcoin-tx)Luke Dashjr2015-05-225-5/+44
| | | | | | | |
* | | | | | | | Merge pull request #6168Wladimir J. van der Laan2015-05-222-2/+14
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 7f68c7d contrib/linearize: Support linearization of testnet blocks (Jeff Garzik)
| * | | | | | | | contrib/linearize: Support linearization of testnet blocksJeff Garzik2015-05-202-2/+14
| | |_|_|_|/ / / | |/| | | | | |
* | | | | | | | Merge pull request #6171Wladimir J. van der Laan2015-05-211-2/+0
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | bdcf5de Fix intermittent hang issue in scheduler_tests (Wladimir J. van der Laan)
| * | | | | | | | Fix intermittent hang issue in scheduler_testsWladimir J. van der Laan2015-05-211-2/+0
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't clear `stopRequested` and `stopWhenEmpty` at the top of `serviceQueue`, as this results in a race condition: on systems under heavy load, some of the threads only get scheduled on the CPU when the other threads have already finished their work. This causes the flags to be cleared post-hoc and thus those threads to wait forever. The potential drawback of this change is that the scheduler cannot be restarted after being stopped (an explicit reset would be needed), but we don't use this functionality anyway.
* | | | | | | | Merge pull request #6160Wladimir J. van der Laan2015-05-201-0/+6
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 16d9cb7 [QT] overviewpage: make sure warning icons gets colored (Jonas Schnelli)
| * | | | | | | | [QT] overviewpage: make sure warning icons gets coloredJonas Schnelli2015-05-191-0/+6
| | | | | | | | |
* | | | | | | | | Merge pull request #6161Wladimir J. van der Laan2015-05-201-0/+1
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fb21862 [QT] mainwindow toolbar must not be movable (Jonas Schnelli)
| * | | | | | | | | [QT] mainwindow toolbar must not be movableJonas Schnelli2015-05-191-0/+1
| |/ / / / / / / /
* | | | | | | | | Merge pull request #6116Wladimir J. van der Laan2015-05-2011-36/+35
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | d1a3866 build: Cope with spaces in filenames when creating/applying OSX sigs (Cory Fields) 7cef321 [Mac only] rename Bitcoin-Qt.app to "Bitcoin Core.app" (Jonas Schnelli)
| * | | | | | | | build: Cope with spaces in filenames when creating/applying OSX sigsCory Fields2015-05-192-22/+21
| | | | | | | | |
| * | | | | | | | [Mac only] rename Bitcoin-Qt.app to "Bitcoin Core.app"Jonas Schnelli2015-05-1911-16/+16
| |/ / / / / / /