aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-05-31[net, trivial] remove using namespace std pollution in netbase.cppPhilip Kaufmann
2015-05-31[net, trivial] explicitly use std::string for FindNodePhilip Kaufmann
- in OpenNetworkConnection we have a FindNode call, which gets a const char*, wheras we only have defined a FindNode for std::string
2015-05-29doc: Add to 0.11 release notesWladimir J. van der Laan
Add information about further notable changes: - Big endian support - Memory usage optimization - Disable wallet transaction broadcast - Stream isolation for Tor
2015-05-29Merge pull request #6194Wladimir J. van der Laan
ee9a2e4 Fix walletbackup.py after directory restructuring (Suhas Daftuar)
2015-05-27[REST] remove json input for getutxos, limit to query max. 15 outpointsJonas Schnelli
Remove possibility to send json encoded parameters to `/rest/getutxos/` to avoid possible DoS scenarios. The JSON output option is untouched.
2015-05-27Eliminate compiler warning due to unused variableSuhas Daftuar
2015-05-27Merge pull request #6173Wladimir J. van der Laan
e697343 Chainparams: Explicit CMessageHeader::MessageStartChars to functions in main: (Jorge Timón)
2015-05-27Chainparams: Explicit CMessageHeader::MessageStartChars to functions in main:Jorge Timón
-UndoWriteToDisk -WriteBlockToDisk
2015-05-27Fix walletbackup.py after directory restructuringSuhas Daftuar
Also add walletbackup.py to rpc-tests.sh
2015-05-27Merge pull request #5669Wladimir J. van der Laan
da29ecb Consensus: MOVEONLY: Move CValidationState from main consensus/validation (jtimon) 27afcd8 Consensus: Refactor: Decouple CValidationState from main::AbortNode() (Cory Fields)
2015-05-27Merge pull request #6189Wladimir J. van der Laan
44e1aad Autoprune release notes included (mrbandrews)
2015-05-27Merge pull request #6097Wladimir J. van der Laan
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)
2015-05-27Merge pull request #6190Wladimir J. van der Laan
1fe4c4f gitian-downloader: Update luke-jr's key (Luke Dashjr)
2015-05-27rest.cpp: strip whitespaceJonas Schnelli
2015-05-27Merge pull request #6153Wladimir J. van der Laan
8c35b6f Parameter interaction: disable upnp if -proxy set (Wladimir J. van der Laan)
2015-05-27Merge pull request #6174Wladimir J. van der Laan
213f257 doc: add translation strings policy (Wladimir J. van der Laan)
2015-05-27Merge pull request #6186Wladimir J. van der Laan
b45c50c Fix two problems in CSubNet parsing (Wladimir J. van der Laan) 19e8d7b Simplify code for CSubnet (Wladimir J. van der Laan)
2015-05-26gitian-downloader: Update luke-jr's keyLuke Dashjr
2015-05-26Autoprune release notes includedmrbandrews
2015-05-26qt: Periodic translation updateWladimir J. van der Laan
2015-05-26doc: Add preliminary changelog for 0.11 to release notesWladimir J. van der Laan
2015-05-26Merge pull request #5976Wladimir J. van der Laan
8ba7f84 Reduce download timeouts as blocks arrive (Suhas Daftuar)
2015-05-26Merge pull request #6187Wladimir J. van der Laan
8697ff3 Remove duplicate chainparams.h include from alert_tests (Michael Ford)
2015-05-26Remove duplicate chainparams.h include from alert_testsMichael Ford
2015-05-26Merge pull request #5947Wladimir J. van der Laan
36cba8f Alert if it is very likely we are getting a bad chain (Gavin Andresen)
2015-05-26Fix two problems in CSubNet parsingWladimir J. van der Laan
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.
2015-05-26Simplify code for CSubnetWladimir J. van der Laan
Simplify the code by using CAddress.ip directly, instead of the reversed GetByte() semantics.
2015-05-24Merge pull request #6159Wladimir J. van der Laan
ffdda4e Catch errors on datadir lock and pidfile delete (Adam Weiss)
2015-05-24doc: Add historical release notes 0.9.5Wladimir J. van der Laan
2015-05-23doc: add translation strings policyWladimir J. van der Laan
2015-05-22Catch errors on datadir lock and pidfile deleteAdam Weiss
Prevents bad permissions (or other fs related problems) from resulting in hard crashes with cryptic messages on startup and shutdown.
2015-05-22Merge pull request #6098Wladimir J. van der Laan
cc24610 Update Windows resource files (and add one for bitcoin-tx) (Luke Dashjr)
2015-05-22Merge pull request #6168Wladimir J. van der Laan
7f68c7d contrib/linearize: Support linearization of testnet blocks (Jeff Garzik)
2015-05-22Update Windows resource files (and add one for bitcoin-tx)Luke Dashjr
2015-05-21Merge pull request #6171Wladimir J. van der Laan
bdcf5de Fix intermittent hang issue in scheduler_tests (Wladimir J. van der Laan)
2015-05-21rpc-tests: remove python-bitcoinrpc directoryJonas Schnelli
place authproxy.py at same level as other utility classes
2015-05-21Fix intermittent hang issue in scheduler_testsWladimir J. van der Laan
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.
2015-05-20contrib/linearize: Support linearization of testnet blocksJeff Garzik
2015-05-20Merge pull request #6160Wladimir J. van der Laan
16d9cb7 [QT] overviewpage: make sure warning icons gets colored (Jonas Schnelli)
2015-05-20Merge pull request #6161Wladimir J. van der Laan
fb21862 [QT] mainwindow toolbar must not be movable (Jonas Schnelli)
2015-05-20Merge pull request #6116Wladimir J. van der Laan
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)
2015-05-19[QT] mainwindow toolbar must not be movableJonas Schnelli
2015-05-19pull-tester/rpc-tests.sh: disable script_test.py testJonas Schnelli
2015-05-19[QT] overviewpage: make sure warning icons gets coloredJonas Schnelli
2015-05-19Merge pull request #5996Wladimir J. van der Laan
935bd0a Chainparams: Refactor: Decouple main::GetBlockValue() from Params() [renamed GetBlockSubsidy] (Jorge Timón)
2015-05-19qt: fix unused function warning in scicon.cppWladimir J. van der Laan
Enclose MakeSingleColorImage in an anonymous namespace to avoid a unused function warning on Windows and MacOSX. Github-Pull: #6143
2015-05-19build: Cope with spaces in filenames when creating/applying OSX sigsCory Fields
2015-05-19[Mac only] rename Bitcoin-Qt.app to "Bitcoin Core.app"Jonas Schnelli
2015-05-18doc: Add historical release notes for 0.10.1 0.10.2 0.9.4Wladimir J. van der Laan
2015-05-18Merge pull request #6154Wladimir J. van der Laan
b448002 [Docs] fix and improve REST documentation (Jonas Schnelli)