aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-02-26Move 'Backup Wallet' to file menuPieter Wuille
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-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.
2012-02-19Fix #616: remove base_uint::operator&=(uint64 b)Pieter Wuille
2012-02-19Fix #626: RecvLine wrong error messagePieter Wuille
Also moved RecvLine to net.cpp.
2012-02-19Fix #650: CKey::SetSecret BIGNUM leakPieter Wuille
2012-02-19Merge pull request #863 from sipa/bn2mpifixPieter Wuille
Workaround for BN_bn2mpi reading/writing out of bounds
2012-02-19Merge pull request #865 from sipa/del_pwalletdbPieter Wuille
Free pwalletdbEncryption after encryping wallet
2012-02-19Hide tray icon in destructor, as deleting will let it linger until quit (on ↵Wladimir J. van der Laan
Ubuntu)
2012-02-18Free pwalletdbEncryption after encryping walletPieter Wuille
Fixes a memory leak.
2012-02-18Make compressed pubkeys require 0.6.0Pieter Wuille
2012-02-18Move GenerateNewKey back to CWalletPieter Wuille
2012-02-18Add SetMinVersion to CWalletPieter Wuille
2012-02-18Merge pull request #862 from TheBlueMatt/warningsPieter Wuille
Fix compilation warning.
2012-02-18Workaround for BN_bn2mpi reading/writing out of boundsPieter Wuille
When OpenSSL's BN_bn2mpi is passed a buffer of size 4, valgrind reports reading/writing one byte past it. I am unable to find evidence of this behaviour in BN_bn2mpi's source code, so it may be a spurious warning. However, this change is harmless, as only the bignum with value 0 results in an mpi serialization of size 4.
2012-02-18Merge pull request #859 from laanwj/2012_02_guilanguageargWladimir J. van der Laan
Make it possible to set UI language from commandline (implements #678)
2012-02-18Fix compilation warning.Matt Corallo
2012-02-17Merge pull request #854 from laanwj/2012_02_qtipcWladimir J. van der Laan
Restructure IPC URL handling (fixes #851)
2012-02-17Merge branch 'nolisten_bitcoin_conf_2' of https://github.com/dooglus/bitcoinGavin Andresen
2012-02-17Merge branch 'testnetmining' of github.com:gavinandresen/bitcoin-gitGavin Andresen
2012-02-17Merge branch 'threadid' of https://github.com/sipa/bitcoinGavin Andresen