Age | Commit message (Collapse) | Author |
|
|
|
af4c2ac Fix `-printblocktree` output (Wladimir J. van der Laan)
|
|
89d72f3 Add new DNS seed from bitnodes.io. (Addy Yeow)
|
|
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.
|
|
|
|
a60ab0b Make GetAvailableCredit run GetHash() only once per transaction. (Gregory Maxwell)
|
|
c17f0a5 [Qt] remove space from translation of client bitness (Philip Kaufmann)
|
|
This makes the first getbalance/getinfo 63x faster on my wallet.
|
|
|
|
1d46fe3 'sendrawtransaction' improvements (Wladimir J. van der Laan)
|
|
5409404 add constant for shared (GUI/core) -par settings (Philip Kaufmann)
|
|
- Make it report the reject code and reason
- Make it possible to re-send transactions that are already in the mempool
|
|
- introduce DEFAULT_SCRIPTCHECK_THREADS in main.h
- only show values from -"MAX_HW_THREADS" up to 16 for -par, as it
makes no sense to try to leave more "cores free" than the system
supports anyway
- use the new constant in optionsdialog and remove defaults from
.ui file
|
|
a486abd replace custom GetFilesize() with boost::filesystem::file_size() (Philip Kaufmann)
|
|
3e0753b always show syncnode in getpeerinfo (fixes #2717) (Philip Kaufmann)
|
|
7398f4a improve command-line options output (Cozz Lovan)
|
|
- introduced by #3920
|
|
dfd3996 Remove duplicate from src/makefile.am (Wladimir J. van der Laan)
|
|
3cb1edb Update moved and dead links (Luke Dashjr)
|
|
chainparams.cpp should not be in both libbitcoin_common and
libbitcoin_server. Also re-sort the sources list.
|
|
|
|
Fixes #3905.
|
|
Convert from QString unicode from/to the OS-dependent locale
as used by boost::filesystem::path as needed.
Solves #3916.
|
|
Building the tests was giving some vague error message about a doubly-defined
symbol.
The solution is to define ShutdownRequested in test_bitcoin.cpp as well
so that init.cpp does not get pulled in.
|
|
|
|
Taught bitcoind to close the HTTP connection after it gets a 'stop' command,
to make it easier for the regression tests to cleanly stop.
Move bitcoinrpc files to correct location.
Tidied up the python-based regression tests.
|
|
ab1edd4 [Qt] Fix enable/disable show and remove buttons (Cozz Lovan)
|
|
|
|
This commit removes completely the src/.gitignore file, given that the
precedent for ignoring artifacts within the `src` directory is to
add entries for them to the root .gitignore file.
Note also that the lone entry in src/.gitignore is stale anyway. As of
the switch to Autotools in 35b8af9, the build no longer build creates
artifacts in `src/test_bitcoin`. They are now written to
`src/test/test_bitcoin`, and this latter path is already ignored in the
root .gitignore file.
|
|
|
|
|
|
|
|
9e2872c Adjust branding in datadir lock error message (Michagogo)
d30d379 Slightly tweak error when unable to bind port (Michagogo)
|
|
16d281b [Qt] add expert section to wallet tab in optionsdialog (Cozz Lovan)
|
|
b8edf6c Qt: Fix ESC in disablewallet mode (Wladimir J. van der Laan)
|
|
- its rather easy to leave out the space on Transifex, so remove it from
the string
|
|
Re-submitting this pull request with a single commit.
This patch introduces a GUIUtil class that is used when setting up the 2 tables we have so far on the Qt-GUI.
In the past you could only resize the last column, which has BTC amounts from the right border of the column header, something that was rather unnatural.
If a new table were ever to be added to the interface, fixing the last columns resizing behavior is rather simple. Just look at how we initialize here a TableViewLastColumnResizingFixer object when setting up the table header's behavior, and then how we override the resize event of the component (can be the table, or the dialog) and we invoke columnResizingFixer->stretchColumnWidth(columnIndex);
|
|
Autotools defaults to a depth-first recursion which causes the qt tests
to be built before the executables and libraries.
This is inconvenient as make needs to be called twice to make sure the
tests are up to date after changing a source file.
Update the Makefile.am to change this order.
|
|
|
|
74f66a5 Fixed compile error on Debian jessie (gcc version 4.8.2 (Debian 4.8.2-16)) (Meeh)
|
|
|
|
Fixes issue #3854
|
|
|
|
- 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
|
|
0fde3bb [Qt] Fill in label from address book also for URIs (Cozz Lovan)
|
|
b40bdd6 qt: Show also value for options overridden on command line (Wladimir 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)
|
|
It worked in the auto/yes cases, but an explicit disable actually forced
it on.
|
|
a1465ac qt: Show weeks as well as years behind for long timespans (Wladimir J. van der Laan)
|
|
2b45345 minor style cleanups (Philip Kaufmann)
|