aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge #7667: Move GetTempPath() to testutilWladimir J. van der Laan2016-03-147-25/+53
|\ | | | | | | | | 2fdaa25 Move GetTempPath() to testutil. (Mustafa) 393b22e Add a source file for unit test utils. (Mustafa)
| * Move GetTempPath() to testutil.Mustafa2016-03-117-25/+39
| |
| * Add a source file for unit test utils.Mustafa2016-03-112-0/+14
| |
* | Merge #7668: Fix history deletion bug after font size changeJonas Schnelli2016-03-142-5/+8
|\ \ | | | | | | | | | 21e45a0 Fix history deletion bug after font change (Andrew C)
| * | Fix history deletion bug after font changeAndrew C2016-03-112-5/+8
| | | | | | | | | | | | The history is no longer cleared after the font size is changed
* | | Merge #7613: Add autocomplete to bitcoin-qt's console window.Jonas Schnelli2016-03-144-0/+32
|\ \ \ | |/ / |/| | | | | ce7413f Add autocomplete to bitcoin-qt's console window. (Luv Khemani)
| * | Add autocomplete to bitcoin-qt's console window.Luv Khemani2016-03-124-1/+33
|/ / | | | | | | | | | | | | Removed externs Added listCommands() to CRPCTable Move autocomplete init to RPCConsole::setClientModel()
* | Merge #7635: [Documentation] Add dependency info to test docsWladimir J. van der Laan2016-03-113-2/+22
|\ \ | | | | | | | | | 2ab835a Check if zmq is installed in tests, update docs (Elliot Olds)
| * | Check if zmq is installed in tests, update docsElliot Olds2016-03-103-2/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If ZMQ is enabled, check whether it's installed before running ZMQ tests. If it isn't, disable ZMQ and print a warning. Also add dependency info to test docs, so users know ZMQ is required before running tests, and so they know how to install it. When following the build instructions before this change then trying to run the RPC tests, a unix user would get an error when python tried to import zmq. There may be other dependencies that should be added to the docs, particularly ones for non-unix systems. This is the only unlisted dependency I encountered using linux.
* | | Merge #7576: [Wallet] move wallet help string creation to CWalletWladimir J. van der Laan2016-03-113-30/+43
|\ \ \ | | | | | | | | | | | | 72c2651 [Wallet] move wallet help string creation to CWallet (Jonas Schnelli)
| * | | [Wallet] move wallet help string creation to CWalletJonas Schnelli2016-03-053-30/+43
| | | |
* | | | Merge #7553: Remove vfReachable and modify IsReachable to only use vfLimited.Wladimir J. van der Laan2016-03-114-16/+6
|\ \ \ \ | | | | | | | | | | | | | | | 110b62f Remove vfReachable and modify IsReachable to only use vfLimited. (Patrick Strateman)
| * | | | Remove vfReachable and modify IsReachable to only use vfLimited.Patrick Strateman2016-02-174-16/+6
| | | | | | | | | | | | | | | | | | | | We do not know that a class of Network is reachable, only that it is not.
* | | | | Merge #7592: mempool: Re-remove ERROR logging for mempool rejectsWladimir J. van der Laan2016-03-111-27/+30
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 8fc81e0 mempool: Reduce ERROR logging for mempool rejects (Wladimir J. van der Laan)
| * | | | | mempool: Reduce ERROR logging for mempool rejectsWladimir J. van der Laan2016-02-241-27/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Continues "Make logging for validation optional" from #6519. The idea there was to remove all ERROR logging of rejected transaction, and move it to one message in the class 'mempoolrej' which logs the state message (and debug info). The superfluous ERRORs in the log "terrify" users, see for example issue #5794. Unfortunately a lot of new logging was introduced in #6871 (RBF) and #7287 (misc refactoring). This pull updates that new code.
* | | | | | Merge #7637: Fix memleak in TorController [rework]Wladimir J. van der Laan2016-03-111-4/+9
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | | | | | | | e219503 Fix memleak in TorController [rework] (Wladimir J. van der Laan)
| * | | | | Fix memleak in TorController [rework]Wladimir J. van der Laan2016-03-031-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It looks like, TorController::disconnected_cb(TorControlConnection& conn) gets called multiple times which results in multiple event_new(). Avoid this by creating the event only once in the constructore, and deleting it only once in the destructor (thanks to Cory Fields for the idea). Replaces the fix by Jonas Schnelli in #7610, see discussion there.
* | | | | | Merge #7642: Avoid "Unknown command" messages when receiving getaddr on ↵Pieter Wuille2016-03-091-6/+11
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | outbound c… 9988554 No "Unknown command" for getaddr command. (R E Broadley)
| * | | | | | No "Unknown command" for getaddr command.R E Broadley2016-03-081-6/+11
| | | | | | |
* | | | | | | Merge #7662: remove unused NOBLKS_VERSION_{START,END} constantsPieter Wuille2016-03-091-4/+0
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 7d2f84c remove unused NOBLKS_VERSION_{START,END} constants (Pavel Vasin)
| * | | | | | | remove unused NOBLKS_VERSION_{START,END} constantsPavel Vasin2016-03-091-4/+0
|/ / / / / / /
* | | | | | | Merge #7628: QT: Add 'copy full transaction details' optionJonas Schnelli2016-03-084-6/+41
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | b51ed40 QT: Add 'copy full transaction details' option (Eric Shaw)
| * | | | | | QT: Add 'copy full transaction details' optionEric Shaw2016-03-074-6/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds feature from issue #7484 modifies the ctrl-c binding to copy full transaction details in transaction view. Added translation
* | | | | | | Merge #7539: Add tags to mempool's mapTx indicesPieter Wuille2016-03-054-16/+24
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 086da92 Add tags to mempool's mapTx indices (Suhas Daftuar)
| * | | | | | | Add tags to mempool's mapTx indicesSuhas Daftuar2016-02-164-16/+24
| | |_|_|/ / / | |/| | | | |
* | | | | | | Merge #7455: [travis] Exit early when check-doc.py failsWladimir J. van der Laan2016-03-031-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | fa5f193 [travis] Exit early when check-doc.py fails (MarcoFalke)
| * | | | | | | [travis] Exit early when check-doc.py failsMarcoFalke2016-03-031-1/+1
| | |_|/ / / / | |/| | | | |
* | | | | | | Merge #7521: Don't resend wallet txs that aren't in our own mempoolWladimir J. van der Laan2016-03-031-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 5a2b1c0 Don't resend wallet txs that aren't in our own mempool (Alex Morcos)
| * | | | | | | Don't resend wallet txs that aren't in our own mempoolAlex Morcos2016-02-111-1/+1
| | | | | | | |
* | | | | | | | Merge #7605: Remove openssl info from init/log and from Qt debug windowWladimir J. van der Laan2016-03-033-76/+35
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | | | | | | | | | 5ecfa36 Remove openssl info from init/log and from Qt debug window (Jonas Schnelli)
| * | | | | | | Remove openssl info from init/log and from Qt debug windowJonas Schnelli2016-02-263-76/+35
| | |_|_|/ / / | |/| | | | |
* | | | | | | Merge #7620: [travis] Only run check-doc.py onceWladimir J. van der Laan2016-03-031-2/+3
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | | | | | | | | fa1b80d [travis] Only run check-doc.py once (MarcoFalke)
| * | | | | | [travis] Only run check-doc.py onceMarcoFalke2016-02-011-2/+3
| | | | | | |
* | | | | | | Merge #7632: Delete outdated test-patches referenceWladimir J. van der Laan2016-03-021-4/+0
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | | | | | | | | | 2e23066 Delete outdated test-patches reference (lewuathe)
| * | | | | | Delete outdated test-patches referencelewuathe2016-03-021-4/+0
|/ / / / / /
* | | | | | Merge #7617: [doc/log] Fix markdown syntax and line terminate LogPrintWladimir J. van der Laan2016-03-019-16/+12
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fa26652 Make sure LogPrintf strings are line-terminated (MarcoFalke) fa97f95 [doc] Fix markdown (MarcoFalke) fa06ce0 Fix doxygen comment for payTxFee (MarcoFalke)
| * | | | | | Make sure LogPrintf strings are line-terminatedMarcoFalke2016-03-011-1/+1
| | | | | | |
| * | | | | | [doc] Fix markdownMarcoFalke2016-03-017-12/+10
| | | | | | |
| * | | | | | Fix doxygen comment for payTxFeeMarcoFalke2016-02-271-3/+1
| | |/ / / / | |/| | | |
* | | | | | Merge #7616: [depends] Delete unused patchesWladimir J. van der Laan2016-03-013-127/+0
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | fafe446 [depends] Delete unused patches (MarcoFalke)
| * | | | | | [depends] Delete unused patchesMarcoFalke2016-03-013-127/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Superseded by 4bdad99f5000539dcf03ddc92c142fa6deb44c01
* | | | | | | Merge #7614: Bugfix: gitian: Add curl to packages (now needed for depends)Wladimir J. van der Laan2016-03-013-0/+3
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 5c70a6d Bugfix: gitian: Add curl to packages (now needed for depends) (Luke Dashjr)
| * \ \ \ \ \ \ Merge branch 'master' into depends_curlLuke Dashjr2016-02-27526-4885/+14022
| |\ \ \ \ \ \ \ | | | |/ / / / / | | |/| | | | |
| * | | | | | | Bugfix: gitian: Add curl to packages (now needed for depends)Luke Dashjr2016-02-273-0/+3
| | | | | | | |
* | | | | | | | doc: Add missing credit to 0.12.0 release notesWladimir J. van der Laan2016-03-011-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #7624
* | | | | | | | Merge #7537: wallet: Warn on unexpected EOF while salvaging walletWladimir J. van der Laan2016-02-291-3/+19
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | ca8fb59 wallet: Warn on unexpected EOF while salvaging wallet (Wladimir J. van der Laan)
| * | | | | | | | wallet: Warn on unexpected EOF while salvaging walletWladimir J. van der Laan2016-02-151-3/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Check for EOF before every getline, and warn when reading gets to EOF before the end of the data. Stricter error checking could shed more light on issues such as #7463 and #7379.
* | | | | | | | | Merge #7590: Improving wording related to Boost library requirements [updated]Wladimir J. van der Laan2016-02-291-4/+6
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8c5a5fb Improving wording related to Boost library requirements [updated] (Jonathan Cross)
| * | | | | | | | | Improving wording related to Boost library requirements [updated]Jonathan Cross2016-02-241-4/+6
| | |_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed formatting as requested on https://github.com/bitcoin/bitcoin/pull/7589 Description: Documentation was unclear in this section and could be interpreted to mean that boost was not a hard requirement for older Ubuntu versions. Related: #7587
* | | | | | | | | Merge #7606: [depends] builders: No need to set -L and --location for curlWladimir J. van der Laan2016-02-292-2/+2
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fa7a5c5 [depends] builders: No need to set -L and --location for curl (MarcoFalke)