aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-20Fix bloom filter not to use bit_maskperyaudo
2014-03-190.9.0 release notesGavin Andresen
2014-03-19doc/README.md: remove 'rc' label for 0.9.0 version, in titleJeff Garzik
2014-03-19Merge pull request #3895Wladimir J. van der Laan
74f66a5 Fixed compile error on Debian jessie (gcc version 4.8.2 (Debian 4.8.2-16)) (Meeh)
2014-03-18Merge pull request #3891 from laanwj/2014_03_tests_license_mitGregory Maxwell
Add licenses for tests and test data
2014-03-18Fixed compile error on Debian jessie (gcc version 4.8.2 (Debian 4.8.2-16))Meeh
2014-03-18Add licenses for tests and test dataWladimir J. van der Laan
- Add license headers to source files (years based on commit dates) in `src/test` as well as `qa` - Add `README.md` to `src/test/data` specifying MIT license Fixes #3848
2014-03-18Merge pull request #3855Wladimir J. van der Laan
0fde3bb [Qt] Fill in label from address book also for URIs (Cozz Lovan)
2014-03-17Merge pull request #3867Wladimir J. van der Laan
b40bdd6 qt: Show also value for options overridden on command line (Wladimir J. van der Laan)
2014-03-17Merge pull request #3874Wladimir J. van der Laan
caee92d qt: Enable and disable the Show and Remove buttons for requested payments history based on whether any entry is selected. (Haakon Nilsen)
2014-03-16Merge pull request #3881Wladimir J. van der Laan
a22e9a3 build: fix explicit --disable-qt-dbus (Cory Fields)
2014-03-16Merge pull request #3878Wladimir J. van der Laan
da0b9d4 Revert "Squashed 'qa/rpc-tests/python-bitcoinrpc/' content from commit e484743" (Johnathan Corgan)
2014-03-15build: fix explicit --disable-qt-dbusCory Fields
It worked in the auto/yes cases, but an explicit disable actually forced it on.
2014-03-15Revert "Squashed 'qa/rpc-tests/python-bitcoinrpc/' content from commit e484743"Johnathan Corgan
This reverts commit 260cf5c0a4754be39b05f6a247b8a354de7eced6.
2014-03-15Merge pull request #3876Wladimir J. van der Laan
a1465ac qt: Show weeks as well as years behind for long timespans (Wladimir J. van der Laan)
2014-03-15Merge pull request #3650Wladimir J. van der Laan
2b45345 minor style cleanups (Philip Kaufmann)
2014-03-15qt: Show weeks as well as years behind for long timespansWladimir J. van der Laan
Closes #3811.
2014-03-15qt: change CT_NOW string to CT_NEW in log messagephilsong
Closes #3852. Rebased-By: Wladimir J. van der Laan <laanwj@gmail.com> Rebased-From: 5f2907a, 88d3df4
2014-03-15Merge pull request #3871Wladimir J. van der Laan
b51700a [Qt] Dont set table color in coin control (Cozz Lovan)
2014-03-15qt: Enable and disable the Show and Remove buttons for requested payments ↵Haakon Nilsen
history based on whether any entry is selected.
2014-03-14Merge pull request #3868 from gmaxwell/minfeeinfoGavin Andresen
Add a "relayfee" field to getinfo.
2014-03-14[Qt] Dont set table color in coin controlCozz Lovan
2014-03-14Update docs about boost on unixThomas Zander
2014-03-14qt: Show also value for options overridden on command lineWladimir J. van der Laan
Currently only the name of the option is shown for GUI options overridden by command line (or configuration file). This commit adds the value of the options as well, which is useful for troubleshooting.
2014-03-13Add a "relayfee" field to getinfo.Gregory Maxwell
This shows the minimum relay fee for non-free transactions in btc/kb. The armory developers requested this so that they can prevent users from creating transactions that not even their local bitcoind will relay. This also slightly reorders the getinfo output so that the fee related lines are grouped and changes the help text to reflect that the units are btc/kb.
2014-03-13Merge pull request #3849 from cozz/cozz2Gavin Andresen
Fix missing wallet lock in CWallet::SyncTransaction(..)
2014-03-13Merge pull request #3846Wladimir J. van der Laan
3f2a017 [Qt] Fix coin control qt5 checkbox bug in tree mode (Cozz Lovan)
2014-03-12Merge pull request #3841 from schildbach/script-tests-OP_0Gavin Andresen
Add script test to prove that OP_0 evaluates as the empty vector.
2014-03-12[Qt] Fill in label from address book also for URIsCozz Lovan
2014-03-12Merge pull request #3808 from paveljanik/masterGavin Andresen
DOC: Update the list of threads to the current state.
2014-03-11Fix missing wallet lock in CWallet::SyncTransaction(..)Cozz Lovan
2014-03-11minor style cleanupsPhilip Kaufmann
2014-03-11Merge pull request #3844Wladimir J. van der Laan
c52c4e5 qt: Make it possible again to specify -testnet in config file (Wladimir J. van der Laan)
2014-03-11Merge branch 'match_relay_fee' of git://github.com/mikehearn/bitcoinGavin Andresen
2014-03-11[Qt] Fix coin control qt5 checkbox bug in tree modeCozz Lovan
2014-03-11Merge pull request #3696Wladimir J. van der Laan
c4656e0 Add progress to initial display of latest block downloaded. (R E Broadley) 75b8953 Display progress of rescan. (R E Broadley)
2014-03-11qt: Make it possible again to specify -testnet in config fileWladimir J. van der Laan
Changes for the datadir chooser have made it impossible to specify the network (testnet/regtest) in the configuration file for the GUI. Reorganize the initialization sequence to make this possible again. - Moves the "datadir" QSetting so that is no longer dependent on the network-specific application name (doing otherwise would create a chicken-and-egg problem). - Re-initialize translations after choosing network. There may be a different language configured in network-specific settings (slim chance, but handle it for sanity). Fixes point 1 of #3840.
2014-03-11Add script test to prove that OP_0 evaluates as the empty vector, rather ↵Andreas Schildbach
than [0].
2014-03-10Make mining fee policy match relay fee policy.Mike Hearn
This resolves a case in which a mismatch could be used to bloat up the mempool by sending transactions that pay enough fee to relay, but not to be mined, with the default policies.
2014-03-10Merge pull request #3717 from djpnewton/wallet-txcountJeff Garzik
add getwalletinfo RPC call with wallet transaction count
2014-03-10qt: Remove control characters from ko_KR translationWladimir J. van der Laan
Last Transifex pull (064a690) introduced a few control characters into the Korean translation, which sometimes causes the build to fail. Manually remove these characters for now to get the build working -- they should still be removed at Transifex too.
2014-03-10Merge pull request #3815Wladimir J. van der Laan
5283410 Remove unused includes of boost lexical_cast (Wladimir J. van der Laan)
2014-03-10Merge pull request #3829Wladimir J. van der Laan
a75cacd doc/build-unix.md use github flavored md for table (Torstein Husebø)
2014-03-10Merge pull request #3835Wladimir J. van der Laan
064a690 Transifex pull pre-0.9.0rc3/final (Wladimir J. van der Laan)
2014-03-10Transifex pull pre-0.9.0rc3/finalWladimir J. van der Laan
2014-03-10doc/build-unix.md use github flavored md for tableTorstein Husebø
2014-03-10Merge pull request #3514Wladimir J. van der Laan
f59d8f0 Per-peer block download tracking and stalled download detection. (Pieter Wuille)
2014-03-10Merge pull request #3833Wladimir J. van der Laan
f5f157b add --enable-debug for configure (daniel)
2014-03-10add --enable-debug for configuredaniel
2014-03-10qt: Adjust BLOCK_CHAIN_SIZE to 20GBWladimir J. van der Laan
This increases the space requirement for selecting a data directory in the UI. As suggested by @bardiharborow, fixes #3830.