Age | Commit message (Collapse) | Author |
|
81bfb5a add checks for deserialization errors (Manuel Araoz)
232aa9e Add code generating data/sighash.json test data (Manuel Araoz)
43cb418 Add sighash tests from data file (Manuel Araoz)
|
|
1204945 Add application category for OSX (duanemoody)
|
|
|
|
In "View by Category" without this metadata the app gets sorted into "Other" at the bottom.
|
|
|
|
|
|
Rebased-By: Wladimir J. van der Laan <laanwj@gmail.com>
Rebased-From-Github-Pull: #3801
|
|
Ignores any exceptions thrown if directory exists, otherwise re-throws exception.
Rebased-By: Wladimir J. van der Laan <laanwj@gmail.com>
|
|
Fix typo in `createmultisig` help
|
|
iCreateMultisig is not a thing.
|
|
ffeb473 Add nHighTransactionFeeWarning as per #3969. (Bardi Harborow)
|
|
ab88ed9 Organize RPCCommands table (Wladimir J. van der Laan)
|
|
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.
|
|
7b95c7b Ignore temporary object files (Chris Beams)
|
|
76cee18 fix permissions in application bundle (Andrea D'Amore)
|
|
af4c2ac Fix `-printblocktree` output (Wladimir J. van der Laan)
|
|
Add Andreas Schildbach to gitian download scripts.
|
|
used in future.
|
|
|
|
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)
|
|
cfe4cad [Qt] fix style, formating, comment and indentation problems (Philip Kaufmann)
|
|
- introduced by #3920
|
|
dfd3996 Remove duplicate from src/makefile.am (Wladimir J. van der Laan)
|
|
3cb1edb Update moved and dead links (Luke Dashjr)
|
|
c61fe44 qt: Only override -datadir if different from the default (Wladimir J. van der Laan)
7e591c1 qt: Do proper boost::path conversion (Wladimir J. van der Laan)
|
|
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.
|
|
Use INSTALL_DATA rather than INSTALL for copying non executable files in
OS X application bundle.
Tested by running "all appbundle" make target and trying the resulting
application bundle, host system is OS X 10.9.2 .
|
|
ab1edd4 [Qt] Fix enable/disable show and remove buttons (Cozz Lovan)
|
|
6540025 Remove stale and redundant src/.gitignore file (Chris Beams)
|
|
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.
|
|
Prior to this change, `git status` would report untracked files of the
following sort if run during a build:
?? src/rpcprotocol.o-e628def3
These files should be explicitly ignored not only because they are a
nuisance, but given that they appear and disappear quickly, they may be
inadvertently added to the index even if one has been careful to check
for untracked files with `git status` prior to a `git add .`.
|
|
|