aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2012-02-22Merge branch 'fix_626' of https://github.com/sipa/bitcoinGavin Andresen
2012-02-22Merge branch 'bugfix_bip14_ez' of https://github.com/luke-jr/bitcoinGavin Andresen
2012-02-22Merge branch '201202_guiaddsuffix' of https://github.com/laanwj/bitcoinGavin Andresen
2012-02-22Bugfix: Instead of reporting "bitcoin-qt" for both bitcoind and Bitcoin-Qt, ↵Luke Dashjr
report "Satoshi" which is at least correct
2012-02-22Leave IRC enabled by default on testnetPieter Wuille
As testnet has neither DNS seeds or built-in seed addresses to bootstrap from.
2012-02-21Post-feb20 simplificationsPieter Wuille
Now the entire network upgraded to (initial) protocol version 209, crtainl simplifications in the source code are possible.
2012-02-20ProcessBlock is sometimes called with pfrom==NULLPieter Wuille
2012-02-20Fix tests after 38067c18Pieter Wuille
2012-02-20Merge pull request #857 from laanwj/2012_02_fixhelpwindowWladimir J. van der Laan
On windows, show message box with help, as there is no stderr (fixes #702)
2012-02-20Merge pull request #858 from laanwj/2012_02_uisendlabelfixWladimir J. van der Laan
Only fill in label from address book if no label is filled in yet (fixes #840)
2012-02-19Merge pull request #876 from luke-jr/signmsg_descGregory Maxwell
Sign message description changes discussed in #bitcoin-dev
2012-02-19Sign message description changes discussed in #bitcoin-devLuke Dashjr
2012-02-20Typo fixPieter Wuille
2012-02-19Merge pull request #864 from sipa/fix_856Pieter Wuille
Make compressed pubkeys require client >=0.5.99
2012-02-19Merge pull request #868 from sipa/fix_650Pieter Wuille
Fix #650: CKey::SetSecret BIGNUM leak
2012-02-19Merge pull request #867 from laanwj/2012_02_hidetrayicononquitWladimir J. van der Laan
Hide tray icon in destructor, as deleting will let it linger until quit (on ubuntu)
2012-02-19Report number of (dis)connected blocks in reorganizationPieter Wuille
Also report old and new best, and fork point.