aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-08-04Merge pull request #4582Wladimir J. van der Laan
a60120e Add built-in seeds for .onion (Wladimir J. van der Laan)
2014-08-04Typo, and a few "Bitcoin" -> "Bitcoin Core"pryds
Github-Pull: #4619
2014-08-04Merge pull request #4566Wladimir J. van der Laan
0a0878d doc: Add new DNSseed policy (Gregory Maxwell)
2014-08-04doc: Add new DNSseed policyGregory Maxwell
2014-08-03Merge pull request #4536Pieter Wuille
b33bd7a Implement "getchaintips" RPC command to monitor blockchain forks. (Daniel Kraft)
2014-08-03Implement "getchaintips" RPC command to monitor blockchain forks.Daniel Kraft
Port over https://github.com/chronokings/huntercoin/pull/19 from Huntercoin: This implements a new RPC command "getchaintips" that can be used to find all currently active chain heads. This is similar to the -printblocktree startup option, but it can be used without restarting just via the RPC interface on a running daemon.
2014-08-03Add built-in seeds for .onionWladimir J. van der Laan
This makes it possible for a node with `-onlynet=tor` to bootstrap itself. It also adds the base infrastructure for adding IPv6 seed nodes. Also represent IPv4 fixed seed addresses in 16-byte format.
2014-08-03Merge pull request #4602Wladimir J. van der Laan
6fd59ee script.h: set_vch() should shift a >32 bit value (Jeff Garzik)
2014-08-03Merge pull request #4610Wladimir J. van der Laan
bdba2dd qt: Remove an obscure option no-one cares about (Wladimir J. van der Laan)
2014-08-01Merge branch 'whyextern' of git://github.com/jtimon/bitcoin into merge-whyexternJeff Garzik
2014-08-01Declare SignatureHash() in script.hjtimon
2014-08-01Merge branch 'merge-rawtx2' into merge-rawtx3Jeff Garzik
2014-08-01add license header to core_io.h, core_read/_write.cppPhilip Kaufmann
2014-08-01fix compilation error in core_io.hPhilip Kaufmann
- error: 'vector' in namespace 'std' does not name a type - add <vector> include in core_io.h - remove <vector> includes from core_read.cpp and core_write.cpp
2014-08-01qt: Remove '0 BTC' placeholder from translationWladimir J. van der Laan
2014-07-31qt: more watchonly -> watch-onlyWladimir J. van der Laan
2014-07-31qt: Update some messages after suggestions by translatorsWladimir J. van der Laan
- *cannot* is more common, thus preferred to *can not* - Use *Watch-only* instead of *Watchonly* as one word
2014-07-31qt: Change transifex slug to new resource for 0.10.xWladimir J. van der Laan
Make sure that translations are pulled from the 0.10.x resource https://www.transifex.com/projects/p/bitcoin/resource/qt-translation-010x/ Closes #4006.
2014-07-31English translation updateWladimir J. van der Laan
This is needed to add version 0.10.x on Transifex so that translation can start.
2014-07-31Merge pull request #4560Wladimir J. van der Laan
d2d9dc0 script tests: add tests for CHECKMULTISIG limits (Otto Allmendinger) 89101c6 script test: test case for 5-byte bools (Otto Allmendinger) 4cac5db script tests: value with trailing 0x00 is true (Otto Allmendinger) 833ff16 script tests: values that overflow to 0 are true (Otto Allmendinger) 0072d98 script tests: BOOLAND, BOOLOR decode to integer (Otto Allmendinger) ed02282 additional test for OP_SIZE in script_valid.json (Otto Allmendinger)
2014-07-31Merge pull request #4568Wladimir J. van der Laan
9c34731 CBloomFilter::clear() method (Tom Harding)
2014-07-31qt: Remove an obscure option no-one cares aboutWladimir J. van der Laan
Remove the "Display addresses" setting checkbox. It doesn't do what the tooltip says, and seems kind of pointless in any case. Fixes #4580.
2014-07-30univalue: remove unused methods getArray, getObjectJeff Garzik
2014-07-30Merge branch 'rawtx' into merge-rawtxJeff Garzik
2014-07-31Merge pull request #4497Pieter Wuille
714a3e6 Only keep setBlockIndexValid entries that are possible improvements (Pieter Wuille)
2014-07-30Merge pull request #4104Wladimir J. van der Laan
68aa01e Fixes error (Ian Carroll)
2014-07-30Merge pull request #4593Wladimir J. van der Laan
d70bc52 Rework block processing benchmark code (Pieter Wuille)
2014-07-30Merge pull request #4577Wladimir J. van der Laan
0c3e101 Added systemd .service file in order to help distributions integrate bitcoind. (Aitor Pazos)
2014-07-29Merge branch '2014_07_remove_pyminer' of git://github.com/laanwj/bitcoin ↵Jeff Garzik
into merge-pyminer
2014-07-29Added systemd .service file in order to help distributions integrate bitcoind.Aitor Pazos
2014-07-29Update openssl.org URL to include https://Jeff Garzik
Suggested by whitj00. Fixes #4595
2014-07-29Merge pull request #4559Wladimir J. van der Laan
2e7009d Avoid querying DNS seeds, if we have open connections. (Jeff Garzik)
2014-07-29script.h: set_vch() should shift a >32 bit valueJeff Garzik
Source: http://www.viva64.com/en/b/0268/
2014-07-29Add "bitcoin-tx" command line utility and supporting modules.Jeff Garzik
This is a simple utility that provides command line manipulation of a hex-encoded TX. The utility takes a hex string on the command line as input, performs zero or more mutations, and outputs a hex string to standard output. This utility is also an intentional exercise of the "bitcoin library" concept. It is designed to require minimal libraries, and works entirely without need for any RPC or P2P communication. See "bitcoin-tx --help" for command and options summary.
2014-07-29bitcoin-cli, rpcrawtransaction: harmonize "{" stylingJeff Garzik
2014-07-29core_read's ParseScript(): minor cleanupsCory Fields
- use .empty() rather than .size() == 0 - use a const_iterator rather than BOOST_FOREACH - validate iterators before creating a string from them
2014-07-29Move ParseScript() helper, becoming accessible outside src/test/Jeff Garzik
2014-07-29Consolidate CTransaction hex encode/decode into core_io.h, core_{read,write}.cppJeff Garzik
2014-07-29Avoid querying DNS seeds, if we have open connections.Jeff Garzik
The goal is to increase independence and privacy.
2014-07-29contrib: remove getwork-based pyminerWladimir J. van der Laan
As the `getwork` API doesn't exist anymore, currently this script is useless. It would be nice to have a `getblocktemplate`-based Python example of a miner, but there is no point in keeping this one around except to confuse people.
2014-07-29Remove hopelessly outdated build-msw.mdWladimir J. van der Laan
Anyone building bitcoind/-qt on windows is welcome to contribute a new one. The current information in this document is outdated, or otherwise mostly worthless.
2014-07-28Add warning comment to getinfoWladimir J. van der Laan
Warn that people should not add new information, or change current information returned by getinfo.
2014-07-28Merge pull request #4597Wladimir J. van der Laan
d817187 [Qt] remove ProxySocksVersion from OptionID (Philip Kaufmann)
2014-07-28Merge pull request #4541Wladimir J. van der Laan
125fba1 Add a new checkpoint at block 295,000 (Trevin Hofmann)
2014-07-28[Qt] remove ProxySocksVersion from OptionIDPhilip Kaufmann
- we only support SOCKS5, so remove it
2014-07-28Merge pull request #4531Wladimir J. van der Laan
ebdcc36 Add helptexts for -whitelist and rpc prioritisetransaction and switch to bitcoin instead of satoshis (Cozz Lovan)
2014-07-28Merge pull request #4491Wladimir J. van der Laan
eaedb59 net: add SetSocketNonBlocking() as OS independent wrapper (Philip Kaufmann)
2014-07-28Merge pull request #4586Wladimir J. van der Laan
f65352a [Qt] small Qt-only include cleanup (Philip Kaufmann)
2014-07-27Rework block processing benchmark codePieter Wuille
* Replace -benchmark (and the related fBenchmark) with a regular debug option, -debug=bench. * Increase coverage and granularity of individual block processing steps. * Add cummulative times.
2014-07-25[Qt] small Qt-only include cleanupPhilip Kaufmann