aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-08-26Merge pull request #4561Pieter Wuille
d0867ac Use const CCoinsView's at some places. (Daniel Kraft) a3dc587 Make appropriate getter-routines "const" in CCoinsView. (Daniel Kraft) ffb4c21 Mark LevelDB "Read" and "Exists" functions as const. (Daniel Kraft)
2014-08-26Use const CCoinsView's at some places.Daniel Kraft
At some places where it is possible (e. g., CheckInputs), use a const version of CCoinsView instead of a non-const one.
2014-08-26Make appropriate getter-routines "const" in CCoinsView.Daniel Kraft
Mark the "Get"/"Have" routines in CCoinsView and subclasses as "const".
2014-08-26Mark LevelDB "Read" and "Exists" functions as const.Daniel Kraft
Mark the "Read" and "Exists" functions in CLevelDBWrapper as "const". They do not change anything in the DB, by definition.
2014-08-26Merge pull request #4749Wladimir J. van der Laan
425c7a8 travis: add doc (Cory Fields) 9380d01 travis: initial descriptor (Cory Fields) 386efb7 build: work around ccache/autotools warning-spamming bug (Cory Fields)
2014-08-25travis: add docCory Fields
2014-08-25travis: initial descriptorCory Fields
2014-08-25Merge pull request #4716Wladimir J. van der Laan
0d27dad Clean-up SyncWithWallets/SyncTransaction (Cozz Lovan)
2014-08-25Merge pull request #4654Wladimir J. van der Laan
c4a7709 Fixes ignored qt 4.8 codecs path on windows when configuring with --with-qt-libdir (ntrgn)
2014-08-25Merge pull request #4351Wladimir J. van der Laan
da2ec10 Add a getutxos command to the p2p protocol. It allows querying of the UTXO set given a set of outpoints. (Mike Hearn)
2014-08-24Merge pull request #4683Pieter Wuille
fff7455 Make CScript::clear() release its memory (Pieter Wuille) b0875eb Allow BatchWrite to destroy its input, reducing copying (Pieter Wuille)
2014-08-23Merge pull request #4757Jeff Garzik
2014-08-23contrib/linearize: split output files based on new-timestamp-year or ↵Jeff Garzik
max-file-size
2014-08-23Update linearize scripts.Jeff Garzik
Break into two steps: * Generate hash list * Build data file(s) from local bitcoind blocks/ directory. This supports building one large bootstrap.dat, or multiple smaller blocks/blkNNNNN.dat files.
2014-08-24Make CScript::clear() release its memoryPieter Wuille
2014-08-24Allow BatchWrite to destroy its input, reducing copyingPieter Wuille
2014-08-24Merge pull request #4618Pieter Wuille
eb0b56b Simplify serialize.h's exception handling (Pieter Wuille)
2014-08-23Merge pull request #4632Jeff Garzik
2014-08-23Merge pull request #4718Wladimir J. van der Laan
88fe88c gui: remove redundant numTransactions tracking (Wladimir J. van der Laan)
2014-08-23Merge pull request #4753Wladimir J. van der Laan
df920c6 Build-osx: Force Fix. (Dominyk Tiller) 5a61553 Build-osx: Force Fix. (Dominyk Tiller)
2014-08-23Build-osx: Force Fix.Dominyk Tiller
Kills the "make" line as well.
2014-08-23Build-osx: Force Fix.Dominyk Tiller
Removes the unnecessary directions that encourage people to force install openssl into /usr/local with Homebrew. Unnecessary, and potentially quite risky. @theuni okayed this removal [here](https://github.com/bitcoin/bitcoin/pull/4740#issuecomment-53076840).
2014-08-22Merge pull request #4733Jeff Garzik
2014-08-22Merge pull request #4736Wladimir J. van der Laan
5d9f22b Remove link to now removed Windows Build Notes (Michael Ford)
2014-08-21build: work around ccache/autotools warning-spamming bugCory Fields
When using clang and ccache, builds spew lots of: Clang: warning: argument unused during compilation Upstream bug: https://bugzilla.samba.org/show_bug.cgi?id=8118 This is harmless, bug annoying. If ccache is being used and the -Qunused-arguments flag is supported (clang), use it.
2014-08-21Merge pull request #4740Wladimir J. van der Laan
b1ed7c2 Update build-osx.md (Rose Toomey)
2014-08-21Merge pull request #4735Wladimir J. van der Laan
3802224 Remove all other print() methods (Wladimir J. van der Laan) 9b6d4c5 Move strprintf define to tinyformat.h (Wladimir J. van der Laan) 8121258 Remove print() from core functions (Wladimir J. van der Laan)
2014-08-21Merge pull request #4706Wladimir J. van der Laan
8695a39 replace int with size_t in stream methods (Kamil Domanski)
2014-08-21Merge pull request #4731Wladimir J. van der Laan
c53b1ec Fix github-merge with git version 2.1.0 (Gavin Andresen)
2014-08-21Merge pull request #4739Wladimir J. van der Laan
de1f051 Added protobuf-compiler library to the Qt 5 Dependencies (elichai)
2014-08-20Merge pull request #4744Jeff Garzik
2014-08-20Merge pull request #4730Jeff Garzik
2014-08-20rpc_tests: use BOOST_CHECK_EQUALJeff Garzik
Upon failure, BOOST_CHECK_EQUAL provides additional diagnostic information, displaying that data that failed to match.
2014-08-20Update build-osx.mdRose Toomey
The homebrew instructions were outdated - berkeley-db4 hasn't worked for months, based on the questions I'm seeing on Google/SO. So I added a section explaining how to install berkeley-db4 using homebrew and move on with your life. Thanks for the rest of the documentation!
2014-08-20Added protobuf-compiler library to the Qt 5 Dependencieselichai
2014-08-20Remove all other print() methodsWladimir J. van der Laan
All unused.
2014-08-20Remove link to now removed Windows Build NotesMichael Ford
Removed in
2014-08-20Move strprintf define to tinyformat.hWladimir J. van der Laan
This avoids a dependency on util.h if just tinyformat is needed.
2014-08-20Remove print() from core functionsWladimir J. van der Laan
Break dependency on util.
2014-08-20UniValue tests: use more BOOST_CHECK()Jeff Garzik
2014-08-20UniValue: add unit testsJeff Garzik
2014-08-20UniValue: compact (!pretty) output should not include extra whitespaceJeff Garzik
2014-08-20UniValue: use correct setNumStr() input val, when setting number valuesJeff Garzik
2014-08-19Add bitcoin-tx testsJeff Garzik
Testing: delin, delout, locktime, and basic createrawtransaction-like functionality.
2014-08-19Fix github-merge with git version 2.1.0Gavin Andresen
Running git version 2.1.0 on OSX (homebrew), I get fatal: '1q': not a non-negative integer I'm guessing git command-line parsing got more strict recently?
2014-08-19Merge pull request #4717 from cozz/cozz8Gavin Andresen
[Qt] Revert overviewpage from QFormLayout to QVBoxLayout
2014-08-19Merge pull request #4728 from laanwj/2014_08_rpcserver_password_delayGavin Andresen
Don't reveal whether password is <20 or >20 characters in RPC
2014-08-19Merge pull request #4624Jeff Garzik
2014-08-19bitcoin-tx: Accept input via stdin. Add input handling to tests.Jeff Garzik
2014-08-19Add "it works" test for bitcoin-txJeff Garzik