aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-02Lossless image optimizationSined
less bytes, same images
2013-12-02Merge pull request #3339Wladimir J. van der Laan
bae6c7e Fix a rare crash on Mac OS X, by removing a setFocus on the payTo field that was not necessary, as the field still receives focus without it. (Ryan Niebur)
2013-12-01Fix a rare crash on Mac OS X, by removing a setFocus on the payTo field that ↵Ryan Niebur
was not necessary, as the field still receives focus without it.
2013-12-02Make unit tests succeed with -DDEBUG_LOCKORDERGavin Andresen
2013-12-01Merge pull request #3329 from gavinandresen/syncdebugGavin Andresen
mutex debugging routines: LocksHeld() and AssertLockHeld()
2013-12-01Merge pull request #3306Wladimir J. van der Laan
84b695c [Qt] allow deletion of payment-requests in sendcoins (Philip Kaufmann)
2013-11-29Merge pull request #3239 from gavinandresen/mempool_verboseGavin Andresen
Add verbose flag to getrawmempool
2013-11-30Add verbose boolean to getrawmempoolGavin Andresen
Also changes mempool to store CTxMemPoolEntries to keep track of when they enter/exit the pool.
2013-11-30Refactor: move GetValueIn(tx) to tx.GetValueIn()Gavin Andresen
GetValueIn makes more sense as a CTransaction member.
2013-11-30Remove dead transaction replacement codeGavin Andresen
This dead code can be resurrected from git history if transaction replacement is ever implemented. Keeping dead code in the source is a bad idea, because it implies it was tested and worked at some point, which is not true.
2013-11-29Merge pull request #3309Wladimir J. van der Laan
9ac5a01 Move types.h include before ifaddres.h for u_int declaration (Robert Backhaus)
2013-11-29mutex debugging routines: LocksHeld() and AssertLockHeld()Gavin Andresen
2013-11-29Merge pull request #3328Wladimir J. van der Laan
9d2b73d bitcoin-cli: Add missing SelectParamsFromCommandLine (Wladimir J. van der Laan)
2013-11-28Merge pull request #3295Wladimir J. van der Laan
9e7776b Integration tests via RPC calls (Gavin Andresen)
2013-11-28bitcoin-cli: Add missing SelectParamsFromCommandLineWladimir J. van der Laan
The SelectParamsFromCommandLine call was missing in bitcoin-cli, which caused `-testnet` and `-regtest` to be ignored. Add this call just like in bitcoind.cpp.
2013-11-28Merge pull request #3321Wladimir J. van der Laan
0078841 prevent Windows redefinition warning cause by compat.h (Philip Kaufmann)
2013-11-27prevent Windows redefinition warning cause by compat.hPhilip Kaufmann
2013-11-27Merge pull request #3284Wladimir J. van der Laan
fb78cc2 Split up bitcoinrpc (code movement only) (Wladimir J. van der Laan)
2013-11-27Merge pull request #3296Wladimir J. van der Laan
a946aa8 Store and use a sanitized subVer (Mike Hearn) ba6a4ea Add some additional logging to give extra network insight. (Mike Hearn)
2013-11-27Merge pull request #3319Wladimir J. van der Laan
871ac37 qt: restore icon dock menu (theuni)
2013-11-27Split up bitcoinrpc (code movement only)Wladimir J. van der Laan
Split bitcoinrpc up into - rpcserver: bitcoind RPC server - rpcclient: bitcoin-cli RPC client - rpcprotocol: shared common HTTP/JSON-RPC protocol code One step towards making bitcoin-cli independent from the rest of the code, and thus a smaller executable that doesn't have to be linked against leveldb. This commit only does code movement, there are no functional changes.
2013-11-27Integration tests via RPC callsGavin Andresen
qa/rpc-tests/wallet.sh runs a three-node -regtest network, generates a fresh blockchain, and then exercises basic wallet sending/receiving functionality using command-line RPC.
2013-11-26qt: restore icon dock menutheuni
This was removed by 25c0cce7f. It was apparently removed in qt5, but may return for 5.1.
2013-11-26Store and use a sanitized subVerMike Hearn
2013-11-26Add some additional logging to give extra network insight.Mike Hearn
2013-11-26Merge pull request #3316Wladimir J. van der Laan
106f133 Fix uninitialized variable added in b33b9a6fe (theuni)
2013-11-25Fix uninitialized variable added in b33b9a6fetheuni
After discussing with BlueMatt, this appears to be harmless in its current state since it's always set before it's used. Initialize it anyway for readability and future safety.
2013-11-25Merge pull request #3294Wladimir J. van der Laan
c8b7425 setgenerate creates multiple blocks in -regtest mode (Gavin Andresen)
2013-11-24[Qt] allow deletion of payment-requests in sendcoinsPhilip Kaufmann
- this adds a delete button for insecure and secure payment requests in the sendcoins dialog - it also enables the delete button even for single and empty entries, as this is much easier to handle and doesn't need to special case single entries - big parts of the ui file were changed, because I copied the delete button and had to delete the layout too and created it from scratch (which seems to cleanup the rows and colums in the layout also, which is nice IMHO)
2013-11-24Merge pull request #3302Wladimir J. van der Laan
e5adec3 contrib: add sipa's github-merge script (Wladimir J. van der Laan)
2013-11-24contrib: add sipa's github-merge scriptWladimir J. van der Laan
2013-11-24Merge pull request #3300Wladimir J. van der Laan
848fe68 cleanup error message consistency (Julian Langschaedel)
2013-11-22Move types.h include before ifaddres.h for u_int declarationRobert Backhaus
2013-11-22Merge pull request #3273Wladimir J. van der Laan
fb0507f qt: show all units in send confirmation (Wladimir J. van der Laan)
2013-11-22Merge pull request #3299Wladimir J. van der Laan
c89d59c Remove '/': prefix always starts with '/' (Florin)
2013-11-22cleanup error message consistencyJulian Langschaedel
relicts from the CTransaction refactor.
2013-11-22Remove '/': prefix always starts with '/'Florin
brew --prefix retruns a fully qualified path, so using -L/$prefix results in a path with two leading '/'.
2013-11-22setgenerate creates multiple blocks in -regtest modeGavin Andresen
I'm writing some wallet regression tests using -regtest mode, and need to generate an initial multi-hundred-block chain. Repeatedly calling setgenerate to generate one block is slow and doesn't work properly, because block creation happens asynchronously. This adds two features to setgenerate in -regtest mode: 1) Instead of being interpreted as number of threads to start, the third argument is the number of blocks to generate. 2) setgenerate will not return until the block creation threads have created the requested number of blocks.
2013-11-21Merge pull request #3287Wladimir J. van der Laan
67448b2 [Qt] make a UI element in sendcoins non-validated (Philip Kaufmann)
2013-11-20Merge pull request #3293 from onlyjob/masterWladimir J. van der Laan
Provide build time when building from tarball:
2013-11-20Merge pull request #3283 from gavinandresen/rpcwaitGavin Andresen
RPC client option: -rpcwait, to wait for server start
2013-11-21Provide build time when building from tarball:Dmitry Smirnov
When building from tarball (i.g. not from git source tree or when git is not available) `genbuild.sh` write undefined $TIME to "build/build.h". Even worse, when TIME is set in the environment then its value is written instead of a date. For me this change fixed FTBFS which I got because I had TIME enviroment variable set with format for time(1) utility.
2013-11-20Merge pull request #3257Wladimir J. van der Laan
379778b core: remove includes in .cpp, if header is already in .h (Philip Kaufmann)
2013-11-20[Qt] make a UI element in sendcoins non-validatedPhilip Kaufmann
- this was unused for the label and also makes no sense, so remove it
2013-11-20RPC client option: -rpcwait, to wait for server startGavin Andresen
2013-11-19Merge pull request #3234 from super3/masterWladimir J. van der Laan
Remove Wallet Tools
2013-11-19Merge pull request #3278 from laanwj/2013_11_boost_m4Wladimir J. van der Laan
Update boost m4 files
2013-11-18Update ax_pthread.m4 to serial 21Guillermo Céspedes Tabárez
- Add support for Clang Further details can be found at http://savannah.gnu.org/patch/?8186
2013-11-18Update ax_boost_thread.m4 to serial 27Guillermo Céspedes Tabárez
- Use 'ls -r' in order to try newer version before older ones. Simplify ls pattern so also dylibs are detected.
2013-11-18Update ax_boost_system.m4 to serial 17Guillermo Céspedes Tabárez
- Use 'ls -r' rather than non-portable tool 'tac'. Simplify filepattern in ls expression so dylib (on OSX) are also detected.