aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-12-14Bugfix: fForRelay should be false when deciding required fee to include in ↵Luke Dashjr
blocks During the rushed transition from 0.01 BTC to 0.0005 BTC fees, we took the approach of dropping the relay and block-inclusion fee to 0.0005 BTC immediately, and only delayed adjusting the sending fee for the next release. Afterward, the relay fee was lowered to 0.0001 BTC to avoid having the same problem in the future. However, the block inclusion code was left setting fForRelay to true! This fixes that, so the lower 0.0001 BTC allowance is (as intended) only permitted for real relaying.
2011-09-22Merge pull request #527 from TheBlueMatt/gitian-downloaderv0.4.0Gavin Andresen
Restructure gitian files and add download config files.
2011-09-22Restructure gitian files and add download config files.Matt Corallo
2011-09-22Fix QA email addressGavin Andresen
2011-09-22Merge pull request #526 from sipa/nlGavin Andresen
Updated dutch translation
2011-09-22Updated dutch translationPieter Wuille
2011-09-22Merge pull request #525 from TheBlueMatt/masterJeff Garzik
Update binary mo to match latest po translation.
2011-09-22Update binary mo to match latest po translation.Matt Corallo
2011-09-20Merge pull request #522 from sipa/minorfixJeff Garzik
SocketHandler thread can be detached
2011-09-19Merge pull request #520 from tcatm/less-loggingNils Schneider
log low-level network messages only when fDebug is set
2011-09-19SocketHandler thread can be detachedPieter Wuille
2011-09-17missed printf in AbortMessage(); merged printfs in EndMessageNils Schneider
2011-09-17log low-level network messages only when fDebug is setNils Schneider
2011-09-17Merge pull request #519 from dabaopku/masterJeff Garzik
Chinese Simp translation update
2011-09-17Update to the Chinese Simp translationDean Lee
2011-09-14Merge pull request #516 from TheBlueMatt/nsisiconfixGavin Andresen
Update bitcoin icon to make nsis setup exe deterministic.
2011-09-14Update bitcoin icon to make nsis setup exe deterministic.Matt Corallo
This adds a 32x32 16-bit icon to the bitcoin.ico file. Though this realistically probably looks worse than the 32-bit 32x32 being displayed on a 16-bit monitor, it makes the nsis setup exe deterministic in gitian output (go figure) which makes the slight visual loss for users of very old monitors/computers worth it.
2011-09-13Merge pull request #512 from paraipanakos/masterJeff Garzik
Spanish translation update
2011-09-11Merge pull request #511 from mibe/translation-deJeff Garzik
Updated German translation
2011-09-12Updated German translationMichael Bemmerl
2011-09-11Spanish translation updateAlex B
2011-09-09Merge pull request #509 from cjdelisle/walletCrypto-wx-minVersionGavin Andresen
wxWidgets needs to be at least version 2.9.1 because wallet crypto uses T
2011-09-09Merge pull request #508 from TheBlueMatt/masterGavin Andresen
Update gitian build descriptors to produce proper builds.
2011-09-09Update gitian build descriptors to produce proper builds.Matt Corallo
Thanks to makomk for finding the bugs here and devrandom for passing them along (see https://bitcointalk.org/index.php?topic=42198.msg514312#msg514312)
2011-09-09Merge pull request #505 from gavinandresen/unique_coinbasev0.4.00rc2Gavin Andresen
Unique coinbase: Fixes #482
2011-09-08wxWidgets needs to be at least version 2.9.1 because wallet crypto uses ↵cjdelisle
ToStdString() which is not in 2.9.0
2011-09-07Merge branch 'unique_coinbase' of ↵Gavin Andresen
git://gitorious.org/~Luke-Jr/bitcoin/luke-jr-bitcoin into unique_coinbase
2011-09-07Merge pull request #500 from gavinandresen/txndeadlockGavin Andresen
Fix AddAddress cs_mapaddresses/db transaction deadlock
2011-09-06Fix AddAddress cs_mapaddresses/db transaction deadlockGavin Andresen
2011-09-06Bugfix: Use timestamp in coinbase rather than "bits", needed to ensure ↵Luke Dashjr
coinbase txn is unique even if address is the same
2011-09-06Save coinbase, not just extraNonceLuke Dashjr
2011-09-06Merge branch 'getwork_dedupe' into unique_coinbaseLuke Dashjr
2011-09-06Merge branch 'master' of git://github.com/bitcoin/bitcoinJeff Garzik
2011-09-06Revert "Define MSG_NOSIGNAL to 0 on platforms where it is unavailable."Jeff Garzik
This reverts commit 6a0296791d5e81102a12a3142f5be25cb40f9825. The change breaks build on Fedora Linux.
2011-09-06Merge pull request #503 from TheBlueMatt/translatefixJeff Garzik
Add binary mo for new translation.
2011-09-06Add binary mo for new translation.Matt Corallo
2011-09-06Merge pull request #502 from vsrinivas/masterJeff Garzik
Define MSG_NOSIGNAL to 0 when it is not defined. Gets OpenBSD building.
2011-09-06Define MSG_NOSIGNAL to 0 on platforms where it is unavailable.Venkatesh Srinivas
Enables building bitcoind on OpenBSD.
2011-09-06Merge pull request #501 from paraipanakos/masterJeff Garzik
Added Romanian translation
2011-09-06Romanian translation addedAlex B
2011-09-06ignore stuffLuke Dashjr
2011-09-06Merge pull request #491 from gavinandresen/manytxfixGavin Andresen
Optimize database writes for transactions with lots of TxIns.
2011-09-06Merge pull request #499 from codler/patch-3Gavin Andresen
Add a note to only include .po file
2011-09-06Add a note to only include .po fileHan Lin Yap
2011-09-06Merge pull request #490 from TheBlueMatt/masterGavin Andresen
Fix build process to actually work (yet again).
2011-09-06Merge pull request #496 from alexwaters/boost_fs3Gavin Andresen
Support for boost filesystem version 3
2011-09-05README.md: word wrap text fileJeff Garzik
2011-09-05Merge pull request #495 from alexwaters/readmeJeff Garzik
Updated readme file
2011-09-05Updated readme fileAlex Waters
2011-09-05Optimize database writes for transactions with lots of TxIns.Gavin Andresen
Patch from ArtForz, who discovered the problem.