aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-16add shell one-liner for updating translations in bitcoin.qrcNils Schneider
2012-03-16Merge pull request #941 from laanwj/2012_03_newminimizetrayWladimir J. van der Laan
Yet another attempt of a "minimize to tray" that works on all OSes
2012-03-16Yet another attempt at implementing "minimize to tray" that works on all OSesWladimir J. van der Laan
2012-03-15Fix windows build in windows Qt SDKWladimir J. van der Laan
2012-03-14Link -lrt library on LinuxWladimir J. van der Laan
This is needed for linking on newer Linux distribs, see http://fedoraproject.org/wiki/UnderstandingDSOLinkChange
2012-03-13Bump CLIENT_VERSION for rc3 releasev0.6.0rc3Gavin Andresen
2012-03-12Merge pull request #930 from sipa/minireorgGregory Maxwell
Limit the impact of reorganisations on the database (fix #925)
2012-03-12Limit the impact of reorganisations on the databasePieter Wuille
Sometimes a new block arrives in a new chain that was already the best valid one, but wasn't marked that way. This happens for example when network rules change to recover after a fork. In this case, it is not necessary to do the entire reorganisation inside a single db commit. These can become huge, and exceed the objects/lockers limits in bdb. This patch limits the blocks the actual reorganisation is applied to, and adds the next blocks afterwards in separate db transactions.
2012-03-11Merge pull request #926 from gmaxwell/masterPieter Wuille
Resolves issue #922 - "wallet passphrase timeout of several years doesn't work"
2012-03-10Resolves issue #922 - "wallet passphrase timeout of several years doesn't work"Gregory Maxwell
2^31 milliseconds is only about 25 days. Also clamps Sleep() to 10 years, because it currently sleeps for 0 seconds when the sleep time would cross 2^31 seconds since the epoch. Hopefully boost will be fixed by 2028.
2012-03-05Merge pull request #918 from nomnombtc/patch-1Pieter Wuille
fix typo src/net.cpp
2012-03-05fix typo src/net.cppnomnombtc
2012-03-03Merge pull request #915 from sipa/nooverwritetxGavin Andresen
Do not allow overwriting unspent transactions
2012-03-03Do not allow overwriting unspent transactions (BIP 30)Pieter Wuille
Introduce the following network rule: * a block is not valid if it contains a transaction whose hash already exists in the block chain, unless all that transaction's outputs were already spent before said block. Warning: this is effectively a network rule change, with potential risk for forking the block chain. Leaving this unfixed carries the same risk however, for attackers that can cause a reorganisation in part of the network. Thanks to Russell O'Connor and Ben Reeves.
2012-02-29Updated Mac build processGavin Andresen
2012-02-29Merge pull request #912 from TheBlueMatt/masterGavin Andresen
Fix release-process.txt for new deps zip.
2012-02-29Fix release-process.txt for new deps zip.Matt Corallo
2012-02-29DoS fix for mapOrphanTransactionsv0.6.0rc2Gavin Andresen
2012-02-28Merge branch 'mruinventory' of https://github.com/sipa/bitcoinGavin Andresen
2012-02-28Merge branch '2012_02_getspecialfolderpath_overflow' of ↵Gavin Andresen
https://github.com/laanwj/bitcoin
2012-02-28Merge pull request #910 from fanquake/masterPieter Wuille
Correct Spelling
2012-02-28"February"Michael Ford
2012-02-27Do not start bitcoin: thread on OSX. fixes #889Gavin Andresen
2012-02-27Merge branch 'nodosbip16' of https://github.com/sipa/bitcoinGavin Andresen
2012-02-27Add mruset and use it for setInventoryKnownPieter Wuille
2012-02-27Move BIP16 switchover time to April 1Gavin Andresen
2012-02-27Merge branch 'nooptionsinwallet+fixproxysetting' of ↵Gavin Andresen
https://github.com/sipa/bitcoin
2012-02-26Merge pull request #853 from laanwj/2012_02_altminimizetrayWladimir J. van der Laan
Yet another alternative "minimize to tray" implementation Fixes problems with window positioning.
2012-02-26Store addrProxy port in settingsPieter Wuille
2012-02-26Reworked QT settingsGavin Andresen
2012-02-26bitcoind changes to stop storing settings in wallet.dat.Gavin Andresen
2012-02-26Simplify MyGetSpecialFolderPath and fix possible buffer overflow (#901)Wladimir J. van der Laan
2012-02-26Merge pull request #900 from sipa/movebackupmenuWladimir J. van der Laan
Move 'Backup Wallet' to file menu
2012-02-26Move 'Backup Wallet' to file menuPieter Wuille
2012-02-25Fix addrProxy settingPieter Wuille
Before 0.6 addrProxy was a CAddress, but netbase changed it to CService. Retain compatibility by wrapping/unwrapping with a CAddress when saving or loading. This commit retains compatibility with 0.6.0rc1 (which wrote the setting as a CService) by trying to parse twice.
2012-02-25Merge pull request #897 from laanwj/2012_02_fixnegativesecsWladimir J. van der Laan
In UI, handle cases in which the last received block was generated in the future
2012-02-25In UI, handle cases in which the last received block was generated in the ↵Wladimir J. van der Laan
future (secs<0) Fixes #874.
2012-02-25Do not invoke anti-DoS system for invalid BIP16 transactionsPieter Wuille
Doing so would allow an attack on old nodes, which would relay a standard transaction spending a BIP16 output in an invalid way, until reaching a new node, which will disconnect their peer. Reported by makomk on IRC.
2012-02-24Merge pull request #894 from dooglus/nosplashWladimir J. van der Laan
Add option "-splash" so we can disable the splash screen.
2012-02-24Add option "-splash" so we can disable the splash screen.Chris Moore
Don't show splash screen when -min is specified on the command line.
2012-02-23Checkpoint block 168,000Gavin Andresen
2012-02-23Merge branch 'getblock_cleanup' of https://github.com/luke-jr/bitcoinGavin Andresen
2012-02-23Merge pull request #887 from TheBlueMatt/gitian_depsPieter Wuille
Make deps build deterministic and upgrade to libpng 1.5.9.
2012-02-22Make deps build deterministic and upgrade to libpng 1.5.9.Matt Corallo
2012-02-22Cleanup JSON-RPC getblock output to be consistentLuke Dashjr
- Add "size" and "bits" - Rename "blockcount" to "height" - Rename "hashprevious" and "hashnext" to "previousblockhash" and "nextblockhash" (respectively)
2012-02-22Merge branch 'testnetirc' of https://github.com/sipa/bitcoinGavin Andresen
2012-02-22Merge branch 'fixnullpfrom' of https://github.com/sipa/bitcoinGavin Andresen
2012-02-22Merge branch 'postfeb20' of https://github.com/sipa/bitcoinGavin Andresen
2012-02-22Merge branch 'reorginfo' of https://github.com/sipa/bitcoinGavin Andresen
2012-02-22Merge branch 'fix_616' of https://github.com/sipa/bitcoinGavin Andresen