Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-08-01 | Bugfix: Use standard BTC unit in comments | Luke Dashjr | |
2012-08-01 | Bugfix: Fix a variety of misspellings | Luke Dashjr | |
2012-08-01 | Merge pull request #1344 from rebroad/AskForTimeFormat | Jeff Garzik | |
Unless debugging, show a more useful format for the askfors | |||
2012-08-01 | Merge pull request #1343 from rebroad/MisbehavingDelta | Jeff Garzik | |
Show when node is misbehaving, not just at the point that it gets banned... | |||
2012-07-28 | Merge pull request #1635 from Diapolo/update_helpMessage | Wladimir J. van der Laan | |
update HelpMessage() | |||
2012-07-27 | Merge pull request #1594 from Diapolo/GUI_testnet3_fix | Wladimir J. van der Laan | |
small update for BitcoinGUI::setNumBlocks() function | |||
2012-07-27 | update HelpMessage() | Philip Kaufmann | |
- place "-?" option at first - re-work description and "\n" usage for Gavins new block creation options to better match current description syntax - ensure no "\n" is in translated strings, which is better for Transifex | |||
2012-07-27 | Merge pull request #1571 from Diapolo/optionsdialog_cleanup | Wladimir J. van der Laan | |
GUI: optionsdialog cleanup | |||
2012-07-26 | Switch testnet3's message bytes to avoid connecting to old nodes. | Gregory Maxwell | |
The new bytes are based on "11" to appeal to Gavin's 11 fetish. This breaks existing testnet3 nodes as the blockchain files are also versioned. To upgrade a node delete everything except wallet.dat from your .bitcoin/testnet3 folder. | |||
2012-07-26 | Handle should-never-happen case of orphan in mempool | Gavin Andresen | |
2012-07-26 | When creating new blocks, sort 'paid' area by fee-per-kb | Gavin Andresen | |
Modify CreateNewBlock so that instead of processing all transactions in priority order, process the first 27K of transactions in priority order and then process the rest in fee-per-kilobyte order. This is the first, minimal step towards better a better fee-handling system for both miners and end-users; this patch should be easy to backport to the old versions of Bitcoin, and accomplishes the most important goal-- allow users to "buy their way in" to blocks using transaction fees. | |||
2012-07-26 | Merge branch 'checknewblock' of git://github.com/luke-jr/bitcoin | Gavin Andresen | |
2012-07-26 | Merge branch 'bugfix_CNBerr' of git://github.com/luke-jr/bitcoin | Gavin Andresen | |
2012-07-26 | Update translation messages | Wladimir J. van der Laan | |
- No core strings changed since last time - Re-add line numbers in .ts file as this is marginally easier for translators (see #1227) | |||
2012-07-25 | Merge pull request #1624 from Diapolo/fix_typo_log_file | Wladimir J. van der Laan | |
fix typo "logfile" -> "log file" | |||
2012-07-25 | Merge pull request #1630 from fanquake/master | Wladimir J. van der Laan | |
Fix Typo | |||
2012-07-26 | Typo | Michael Ford | |
2012-07-25 | Merge pull request #1615 from Diapolo/net_noExtIp_IPv6only | Gregory Maxwell | |
do not use external IPv4 discovery, when -onlynet="IPv6" | |||
2012-07-24 | Fix spelling of successfully | Stephane Glondu | |
2012-07-23 | fix typo "logfile" -> "log file" | Philip Kaufmann | |
2012-07-23 | Typo | fanquake | |
2012-07-23 | Fix Typo | fanquake | |
2012-07-22 | Replace all occurances of license.txt with COPYING, including naming the ↵ | Luke Dashjr | |
file COPYING.txt on Windows | |||
2012-07-22 | optionsdialog cleanup | Philip Kaufmann | |
- remove duplicate includes, that are already present in ui_optionsdialog.h - change QIntValidator to not allow 0 as port-number - re-order some function calls to match the Ui element order, for better readbility and to prepare for the addition of further IPv6 and Tor proxy options - restat warning for the language selection is only shown, when the language was changed (not on simply activating the Ui element) - split check for object == ui->proxyIp into seperate if-clause - micro-optimize the code in the above mentioned if-clause - unify used format for comments in the code - introduce handleProxyIpValid() function, which handles UI elements and the save button states for valid/invalid proxy IPs | |||
2012-07-21 | fix OpenSSL not written as proper noun in some comments | Philip Kaufmann | |
2012-07-20 | do not use external IPv4 discovery, when -onlynet="IPv6" | Philip Kaufmann | |
2012-07-19 | re-size addressbookpage.ui to fix #1062 | Philip Kaufmann | |
2012-07-18 | Merge pull request #1610 from fanquake/master | Jeff Garzik | |
Update a link to dev resources | |||
2012-07-19 | Update a link | fanquake | |
2012-07-18 | Let the comment in GetBlockValue() reflect the uncertainty about the time ↵ | Rune K. Svendsen | |
interval between subsidy reductions | |||
2012-07-17 | Merge pull request #1605 from laanwj/2012_07_caseinsensitivesort | Wladimir J. van der Laan | |
Make sort and filters for transactions and labels case-insensitive | |||
2012-07-17 | Merge branch 'master' of git://github.com/fanquake/bitcoin | Gavin Andresen | |
2012-07-17 | New feature for signrawtransaction: specify signature hash (ALL/NONE/etc) | Gavin Andresen | |
2012-07-17 | Give a better error message than 'type mismatch' for complex JSON arguments | Gavin Andresen | |
2012-07-17 | small update for BitcoinGUI::setNumBlocks() function | Philip Kaufmann | |
- re-work code parts that check if we have a Statusbar warning - use same variable names in the header | |||
2012-07-17 | Make sort and filters for transactions and labels case-insensitive | Wladimir J. van der Laan | |
2012-07-17 | Merge pull request #1604 from Diapolo/fix_comment_net | Wladimir J. van der Laan | |
fix a comment in net.cpp | |||
2012-07-17 | fix a comment in net.cpp | Philip Kaufmann | |
2012-07-17 | IPC-server hardening and update | Philip Kaufmann | |
- add IMPLEMENT_RANDOMIZE_STACK for ipcThread() - log / print boost interprocess exceptions - use MAX_URI_LENGTH in guiconstants.h (also used in qrcodedialog.cpp) - remove unneeded includes and ipcShutdown() from qtipcserver.cpp - fix a small mem-leak by deleting mq before re-using it - make ipcThread() and ipcThread2() static functions - add some more comments | |||
2012-07-16 | Merge pull request #1591 from Diapolo/lang_sel_Qt4.8 | Wladimir J. van der Laan | |
enhance lang-selection in OptionsDialog, when compiling with Qt >= 4.8 | |||
2012-07-16 | Merge branch 'fix-commandline-warnings' of git://github.com/muggenhor/bitcoin | Gavin Andresen | |
2012-07-16 | Teach RenameThread to work on OSX | Gavin Andresen | |
2012-07-17 | Give the GUI-IPC thread a name as well | Giel van Schijndel | |
Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2012-07-17 | Don't check for __linux__ specifically, check for PR_SET_NAME feature instead | Giel van Schijndel | |
Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2012-07-17 | Add support for renaming FreeBSD and OpenBSD threads | Giel van Schijndel | |
NOTE: This is currently disabled, until a developer with FreeBSD/OpenBSD can confirm that this works (without causing undefined behaviour preferrably). Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2012-07-17 | Fix thread names after review | Giel van Schijndel | |
* Fix wrong thread name for wallet *relocking* thread - Was named the unlocking thread * Use consistent naming Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2012-07-17 | Give threads a recognisable name to aid in debugging | Giel van Schijndel | |
NOTE: These thread names are visible in gdb when using 'info threads'. Additionally both 'top' and 'ps' show these names *unless* told to display the command-line instead of task name. Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2012-07-17 | Use linker-arguments only when linking | Giel van Schijndel | |
Passing linker-arguments when only compiling will cause warnings with Clang. This change fixes those. Signed-off-by: Giel van Schijndel <me@mortis.eu> | |||
2012-07-14 | Merge pull request #1592 from Diapolo/Qt_WindowTitle | Wladimir J. van der Laan | |
change Window title to "Bitcoin - Wallet" / misc related renames | |||
2012-07-14 | Merge pull request #1587 from Diapolo/signverifymessagedialog | Wladimir J. van der Laan | |
fix a wrong string in signverifymessagedialog.ui |