aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | AddToWallet implies BindWalletWladimir J. van der Laan2014-03-072-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now that AddToWallet is called when loading transactions from the wallet database, BindWallet can be integrated into that and does not need to be an extra step. Leaves behaviour unchanged, but makes the fFromLoadWallet/!fFromLoadWallet paths in AddToWallet a bit more symmetric.
* | | | | | | | | | Merge pull request #4037 from gmaxwell/fdleaksGregory Maxwell2014-04-182-7/+8
|\ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / |/| | | | | | | | | Prevent socket leak in ThreadSocketHandler.
| * | | | | | | | | Correct some proxy related socket leaks.Gregory Maxwell2014-04-091-2/+7
| | | | | | | | | |
| * | | | | | | | | Prevent socket leak in ThreadSocketHandler.Gregory Maxwell2014-04-091-5/+1
| | |_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we are over our outbound limit ThreadSocketHandler would try to keep the connection if the peer was addnoded. This didn't actually work for two reasons: It didn't actually run the accept code due to mistaken code flow, and because we have a limited number of outbound semaphores it couldn't actually use the connection. Instead it leaked the socket, which might have caused issue #4034. This patch just takes out the non-functioning white-listing for now.
* | | | | | | | | Translation update 2014-04Wladimir J. van der Laan2014-04-178-1046/+1415
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Push new English translation, as well as pull other translations that changed since last month.
* | | | | | | | | VERSION obtained from source instead of the previous git tag.Warren Togami2014-04-152-3/+8
| |_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Drawback: The version string is no longer a valid git identifier. For this reason the 'g' short hash prefix has been removed. Exception: When building directly from a tag this behaves exactly like the previous behavior. This allows formatting release versions with precision i.e. v0.9.2 This also allows arbitrary topicbranch names i.e. v0.9.1-glibc-compat
* | | | | | | | qt: remove de_AT translationWladimir J. van der Laan2014-04-143-4095/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Got too many complaints that is was unserious and written by trolls. I have also removed the translation from transifex. Fixes #4054 and #3918.
* | | | | | | | Merge pull request #3912Wladimir J. van der Laan2014-04-111-4/+2
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | b1b9c76 Fix bloom filter not to use bit_mask (peryaudo)
| * | | | | | | Fix bloom filter not to use bit_maskperyaudo2014-03-201-4/+2
| | | | | | | |
* | | | | | | | Merge pull request #4024Wladimir J. van der Laan2014-04-091-1/+1
|\ \ \ \ \ \ \ \ | |_|_|_|/ / / / |/| | | | | | | | | | | | | | | ab64381 Fix a typo in RPC signrawtransaction help (Hector Jusforgues)
| * | | | | | | Fix a typo in RPC signrawtransaction helpHector Jusforgues2014-04-081-1/+1
| | | | | | | |
* | | | | | | | Merge pull request #4020Wladimir J. van der Laan2014-04-091-0/+2
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | 71f82bf Restart-warning for spendZeroConfChange option (langerhans)
| * | | | | | | Restart-warning for spendZeroConfChange optionlangerhans2014-04-071-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | According to the options model, a restart is required after changing this option. So let's notify the user about it.
* | | | | | | | Merge pull request #4019Wladimir J. van der Laan2014-04-081-1/+7
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 13a2283 build: Sync ax_boost_base.m4 with upstream. (Cory Fields)
| * | | | | | | | build: Sync ax_boost_base.m4 with upstream.Cory Fields2014-04-071-1/+7
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | This should fix 32bit boost detection on Ubuntu Saucy+. Fixes #3945.
* / / / / / / / Show error message if ReadConfigFile failsWladimir J. van der Laan2014-04-073-3/+20
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A runaway exception was raised if ReadConfigFile fails (usually due to a parse error in bitcoin.conf). Show an error message instead. Fixes #4013.
* | | | | | | Merge pull request #3972Wladimir J. van der Laan2014-04-071-3/+0
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | fbf617a remove an assignment which is never used. (Yoichi Hirai)
| * | | | | | | remove an assignment which is never used.Yoichi Hirai2014-03-281-3/+0
| | | | | | | |
* | | | | | | | Move assert(pindexNew); to above where we dereference pindexNew.Gregory Maxwell2014-04-051-1/+1
| |_|_|/ / / / |/| | | | | |
* | | | | | | Merge pull request #3572Wladimir J. van der Laan2014-04-041-23/+22
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | f7257cf unified and better log/error messages for CDBEnv/CDB (Philip Kaufmann)
| * | | | | | | unified and better log/error messages for CDBEnv/CDBPhilip Kaufmann2014-04-011-23/+22
| | | | | | | |
* | | | | | | | Merge pull request #3929Wladimir J. van der Laan2014-04-031-0/+3
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 4c35366 Fix importwallet nTimeFirstKey (Cozz Lovan)
| * | | | | | | | Fix importwallet nTimeFirstKeyCozz Lovan2014-03-211-0/+3
| | | | | | | | |
* | | | | | | | | Merge pull request #3928Wladimir J. van der Laan2014-04-0310-9/+113
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3927836 [Qt] rescan progress (Cozz Lovan)
| * | | | | | | | | [Qt] rescan progressCozz Lovan2014-04-0210-9/+113
| | | | | | | | | |
* | | | | | | | | | Merge pull request #3842 from ditto-b/masterGavin Andresen2014-04-022-2/+7
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | Fix for GetBlockValue() after block 13,440,000
| * | | | | | | | | Edit subsidy_limit_test to account for BIP42ditto-b2014-04-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because no one wants 4 gold mines being discovered every mibillenium.
| * | | | | | | | | Fix for GetBlockValue() after block 13,440,000ditto-b2014-03-101-1/+6
| | |_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Forces the block reward to zero when right shift in GetBlockValue() is undefined, after 64 reward halvings (block height 13,440,000).
* | | | | | | | | Merge pull request #3931Wladimir J. van der Laan2014-04-011-0/+1
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | f61287c RPC command getmininginfo showing right genproclimit (Isidoro Ghezzi)
| * | | | | | | | | RPC command getmininginfo showing right genproclimitIsidoro Ghezzi2014-03-221-0/+1
| | |/ / / / / / / | |/| | | | | | |
* | | | | | | | | Merge pull request #3986Wladimir J. van der Laan2014-04-018-7/+15
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 65adc3a qt: Don't require db_cxx.h when wallet disabled (Wladimir J. van der Laan) 4babd08 doc: Add note about memory reqs for compilation (Wladimir J. van der Laan) 25333a2 build: improve missing boost error reporting (Wladimir J. van der Laan)
| * | | | | | | | | qt: Don't require db_cxx.h when wallet disabledWladimir J. van der Laan2014-03-312-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix #3978.
| * | | | | | | | | build: improve missing boost error reportingWladimir J. van der Laan2014-03-316-6/+12
| | | | | | | | | |
* | | | | | | | | | [Qt] small cleanup of coincontroldialogPhilip Kaufmann2014-04-011-17/+16
| |_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - use a little more Qt-style - check for NULL pointers first and return in updateView() - small space and formating changes
* | | | | | | | | add checks for deserialization errorsManuel Araoz2014-03-311-16/+25
| | | | | | | | |
* | | | | | | | | Add code generating data/sighash.json test dataManuel Araoz2014-03-311-3/+30
| | | | | | | | |
* | | | | | | | | Add sighash tests from data fileManuel Araoz2014-03-313-4/+562
| | | | | | | | |
* | | | | | | | | Use the new name Bitcoin Core Daemon instead of Bitcoin serverpaveljanik2014-03-312-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rebased-By: Wladimir J. van der Laan <[email protected]> Rebased-From-Github-Pull: #3801
* | | | | | | | | Wrap create_directory calls in try...catch blocks.Brandon Dahler2014-03-315-4/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ignores any exceptions thrown if directory exists, otherwise re-throws exception. Rebased-By: Wladimir J. van der Laan <[email protected]>
* | | | | | | | | Fix typo in `createmultisig` helpWladimir J. van der Laan2014-03-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | iCreateMultisig is not a thing.
* | | | | | | | | Merge pull request #3969Wladimir J. van der Laan2014-03-312-1/+4
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ffeb473 Add nHighTransactionFeeWarning as per #3969. (Bardi Harborow)
| * | | | | | | | | Add nHighTransactionFeeWarning as per #3969.Bardi Harborow2014-03-292-1/+4
| | | | | | | | | |
* | | | | | | | | | Organize RPCCommands tableWladimir J. van der Laan2014-03-312-52/+57
| |/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use sensible categories (overall control, P2P, blockchain/UTXO and mining, wallet, wallet-enabled mining) and sort within each. Also remove unnecessary #ifdef ENABLE_WALLET from `rpcnet.cpp`. Functionality-neutral change.
* | | | | | | | | Merge pull request #3980Wladimir J. van der Laan2014-03-311-1/+1
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | af4c2ac Fix `-printblocktree` output (Wladimir J. van der Laan)
| * | | | | | | | | Fix `-printblocktree` outputWladimir J. van der Laan2014-03-291-1/+1
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PrintBlockTree output was broken starting from e010af70. Everything appears on one line. PrintWallet() added the newline after a block, but this functionality was removed and no newline was added. Seemingly, no one noticed. Add a newline after the block information to fix this.
* | | | | | | | | Merge pull request #3875Wladimir J. van der Laan2014-03-291-0/+1
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | | | | | | | | | | 89d72f3 Add new DNS seed from bitnodes.io. (Addy Yeow)
| * | | | | | | | Add new DNS seed from bitnodes.io.Addy Yeow2014-03-151-0/+1
| | | | | | | | |
* | | | | | | | | Merge pull request #3973Wladimir J. van der Laan2014-03-291-1/+2
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a60ab0b Make GetAvailableCredit run GetHash() only once per transaction. (Gregory Maxwell)
| * | | | | | | | | Make GetAvailableCredit run GetHash() only once per transaction.Gregory Maxwell2014-03-281-1/+2
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes the first getbalance/getinfo 63x faster on my wallet.
* | | | | | | | | Merge pull request #3922Wladimir J. van der Laan2014-03-291-2/+2
|\ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | c17f0a5 [Qt] remove space from translation of client bitness (Philip Kaufmann)