aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-04-19Merge pull request #3701Wladimir J. van der Laan
09ec3af AddToWallet implies BindWallet (Wladimir J. van der Laan)
2014-04-18Merge pull request #4037 from gmaxwell/fdleaksGregory Maxwell
Prevent socket leak in ThreadSocketHandler.
2014-04-17Translation update 2014-04Wladimir J. van der Laan
Push new English translation, as well as pull other translations that changed since last month.
2014-04-16Pointed to location of BDB 4.8 in procedure for unix build.Altoidnerd
2014-04-16Update doc/gitian-building.md for new gitianWladimir J. van der Laan
The patch to make it possible to configure the LXC IPs has been merged upstream. This means that it is no longer needed to patch gitian. Remove that workaround.
2014-04-16Merge pull request #4049Wladimir J. van der Laan
3d20cd5 VERSION obtained from source instead of the previous git tag. (Warren Togami)
2014-04-15VERSION obtained from source instead of the previous git tag.Warren Togami
Drawback: The version string is no longer a valid git identifier. For this reason the 'g' short hash prefix has been removed. Exception: When building directly from a tag this behaves exactly like the previous behavior. This allows formatting release versions with precision i.e. v0.9.2 This also allows arbitrary topicbranch names i.e. v0.9.1-glibc-compat
2014-04-14qt: remove de_AT translationWladimir J. van der Laan
Got too many complaints that is was unserious and written by trolls. I have also removed the translation from transifex. Fixes #4054 and #3918.
2014-04-12Merge pull request #3747Wladimir J. van der Laan
b698417 Added Blockchain Bootstraping Tutorial (super3)
2014-04-12Added Blockchain Bootstraping Tutorialsuper3
Per @laanwj request in #3724 Fixing Checkpoints Comment Fixed Image Paths Removed requirement. Update Torrent Links. Update Links 2 Link would not work. 2 Small Fixes Changed in to from @laanwj suggestion on safety
2014-04-11Merge pull request #3912Wladimir J. van der Laan
b1b9c76 Fix bloom filter not to use bit_mask (peryaudo)
2014-04-11Merge pull request #4009Wladimir J. van der Laan
7328898 Added instructions for when wrong openssl detected after brew link (olalonde)
2014-04-11Merge pull request #4041Wladimir J. van der Laan
1528397 doc: add note about translations to README.md (Wladimir J. van der Laan)
2014-04-11doc: add note about translations to README.mdWladimir J. van der Laan
2014-04-11Merge pull request #4016Wladimir J. van der Laan
8414cb0 Doxygen-compatible comments in coding style (Wladimir J. van der Laan)
2014-04-09Correct some proxy related socket leaks.Gregory Maxwell
2014-04-09Merge pull request #4033Wladimir J. van der Laan
219b512 doc: update expected intermediate dependency hashes (Wladimir J. van der Laan) 25d4911 gitian: upgrade miniupnpc input to 1.9 (Wladimir J. van der Laan)
2014-04-09Prevent socket leak in ThreadSocketHandler.Gregory Maxwell
When we are over our outbound limit ThreadSocketHandler would try to keep the connection if the peer was addnoded. This didn't actually work for two reasons: It didn't actually run the accept code due to mistaken code flow, and because we have a limited number of outbound semaphores it couldn't actually use the connection. Instead it leaked the socket, which might have caused issue #4034. This patch just takes out the non-functioning white-listing for now.
2014-04-09Merge pull request #4024Wladimir J. van der Laan
ab64381 Fix a typo in RPC signrawtransaction help (Hector Jusforgues)
2014-04-09Merge pull request #4031Wladimir J. van der Laan
f3f2cb7 doc: remove versions from build-unix.md, just refer to release-process.md (Wladimir J. van der Laan)
2014-04-09doc: update expected intermediate dependency hashesWladimir J. van der Laan
Also move them to release-process.md from gitian-building.md for more visibility.
2014-04-09gitian: upgrade miniupnpc input to 1.9Wladimir J. van der Laan
Bumps deps-linux, deps-win dependency versions as well. qt-win does not need to be bumped, as although it depends on deps-win, Qt doesn't use miniupnp. I verified this by rebuilding the dependency and checking the the output is the same. Not having to rebuild Qt is a good thing as it is huge.
2014-04-09doc: remove versions from build-unix.md, just refer to release-process.mdWladimir J. van der Laan
No one bothers to keep this up to date. Better to refer to another file than give wrong information.
2014-04-09Merge pull request #4020Wladimir J. van der Laan
71f82bf Restart-warning for spendZeroConfChange option (langerhans)
2014-04-08Fix a typo in RPC signrawtransaction helpHector Jusforgues
2014-04-08gitian: Version bump for Qt dependencyWladimir J. van der Laan
Bump Qt dependency version after OpenSSL update. Very important. Thanks @michagogo for noting.
2014-04-08Merge pull request #4023Wladimir J. van der Laan
4a811b0 gitian: upgrade openssl to 1.0.1g for both win and linux (Wladimir J. van der Laan)
2014-04-08Merge pull request #3914Wladimir J. van der Laan
ddcd1af gitian: add statically built variant of bitcoind/bitcoin-cli (Wladimir J. van der Laan)
2014-04-08Merge pull request #4019Wladimir J. van der Laan
13a2283 build: Sync ax_boost_base.m4 with upstream. (Cory Fields)
2014-04-08Merge pull request #4022Wladimir J. van der Laan
633bb8b Fixes the broken image in the Gitian Build Guide (Michael Ford)
2014-04-08Merge pull request #4018Wladimir J. van der Laan
4ae5e72 Show error message if ReadConfigFile fails (Wladimir J. van der Laan)
2014-04-08gitian: upgrade openssl to 1.0.1g for both win and linuxWladimir J. van der Laan
OpenSSL 1.0.1g fixes CVE-2014-0160. Also bump dependency versions.
2014-04-08Fixes the broken image in the Gitian Build GuideMichael Ford
2014-04-07Restart-warning for spendZeroConfChange optionlangerhans
According to the options model, a restart is required after changing this option. So let's notify the user about it.
2014-04-07build: Sync ax_boost_base.m4 with upstream.Cory Fields
This should fix 32bit boost detection on Ubuntu Saucy+. Fixes #3945.
2014-04-07Show error message if ReadConfigFile failsWladimir J. van der Laan
A runaway exception was raised if ReadConfigFile fails (usually due to a parse error in bitcoin.conf). Show an error message instead. Fixes #4013.
2014-04-07Doxygen-compatible comments in coding styleWladimir J. van der Laan
2014-04-07Merge pull request #3972Wladimir J. van der Laan
fbf617a remove an assignment which is never used. (Yoichi Hirai)
2014-04-07Merge pull request #4010Wladimir J. van der Laan
94c8bfb Move assert(pindexNew); to above where we dereference pindexNew. (Gregory Maxwell)
2014-04-05Move assert(pindexNew); to above where we dereference pindexNew.Gregory Maxwell
2014-04-06Added instructions for when wrong openssl detected after brew linkolalonde
2014-04-05Merge pull request #4005 from Telepatheic/patch-1Wladimir J. van der Laan
Update README.md
2014-04-05Update README.mdTelepatheic
2014-04-04Merge pull request #3572Wladimir J. van der Laan
f7257cf unified and better log/error messages for CDBEnv/CDB (Philip Kaufmann)
2014-04-04Merge pull request #3994Wladimir J. van der Laan
2c47a00 Add gitian build guide (Wladimir J. van der Laan)
2014-04-03Merge pull request #3929Wladimir J. van der Laan
4c35366 Fix importwallet nTimeFirstKey (Cozz Lovan)
2014-04-03Merge pull request #3998Wladimir J. van der Laan
cb4bdd1 Have pull-tester run the listtransactions.py regression test (Gavin Andresen)
2014-04-03Merge pull request #3928Wladimir J. van der Laan
3927836 [Qt] rescan progress (Cozz Lovan)
2014-04-02Merge pull request #3842 from ditto-b/masterGavin Andresen
Fix for GetBlockValue() after block 13,440,000
2014-04-02Have pull-tester run the listtransactions.py regression testGavin Andresen
This should show how to run a python-based regression test successfully in the pull-tester environment.