aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Remove openssl info from init/log and from Qt debug windowJonas Schnelli2016-02-263-76/+35
|
* Merge #7550: rpc: Input-from-stdin mode for bitcoin-cliWladimir J. van der Laan2016-02-241-9/+12
|\ | | | | | | | | f22f14c doc: mention bitcoin-cli -stdin in release notes (Wladimir J. van der Laan) 92bcca3 rpc: Input-from-stdin mode for bitcoin-cli (Wladimir J. van der Laan)
| * rpc: Input-from-stdin mode for bitcoin-cliWladimir J. van der Laan2016-02-241-9/+12
| | | | | | | | | | | | | | | | | | | | | | | | Implements #7442 by adding an option `-stdin` which reads additional arguments from stdin, one per line. For example ```bash echo -e "mysecretcode\n120" | src/bitcoin-cli -stdin walletpassphrase echo -e "walletpassphrase\nmysecretcode\n120" | src/bitcoin-cli -stdin ```
* | Clarify description of blockindexMatthew Zipkin2016-02-181-3/+3
|/ | | | | | | | see issues: https://github.com/bitcoin-dot-org/bitcoin.org/issues/1237 https://github.com/bitcoin/bitcoin/issues/7532
* Merge #7526: fix spelling of advertise (shows up in the debug log)Wladimir J. van der Laan2016-02-164-9/+9
|\ | | | | | | 37767fd fix spelling of advertise in src and doc (jloughry)
| * fix spelling of advertise in src and docjloughry2016-02-124-9/+9
| |
* | Merge #7524: BIP-112: Mempool-only CHECKSEQUENCEVERIFYWladimir J. van der Laan2016-02-168-3/+248
|\ \ | | | | | | | | | | | | | | | a381076 Code style fix. (BtcDrak) c3c3752 Separate CheckLockTime() and CheckSequence() logic (BtcDrak) 53e53a3 BIP112: Implement CHECKSEQUENCEVERIFY (Mark Friedenbach)
| * | Code style fix.BtcDrak2016-02-161-1/+2
| | | | | | | | | | | | | | | This if statement is a little obtuse and using braces here improves readability.
| * | Separate CheckLockTime() and CheckSequence() logicBtcDrak2016-02-141-20/+26
| | | | | | | | | | | | For the sake of a little repetition, make code more readable.
| * | BIP112: Implement CHECKSEQUENCEVERIFYMark Friedenbach2016-02-148-9/+247
| |/ | | | | | | | | | | | | | | | | | | - Replace NOP3 with CHECKSEQUENCEVERIFY (BIP112) <nSequence> CHECKSEQUENCEVERIFY -> <nSequence> - Fails if txin.nSequence < nSequence, allowing funds of a txout to be locked for a number of blocks or a duration of time after its inclusion in a block. - Pull most of CheckLockTime() out into VerifyLockTime(), a local function that will be reused for CheckSequence() - Add bitwise AND operator to CScriptNum - Enable CHECKSEQUENCEVERIFY as a standard script verify flag - Transactions that fail CSV verification will be rejected from the mempool, making it easy to test the feature. However blocks containing "invalid" CSV-using transactions will still be accepted; this is *not* the soft-fork required to actually enable CSV for production use.
* | Merge #7509: Common argument defaults for NODE_BLOOM stuff and -walletWladimir J. van der Laan2016-02-163-6/+11
|\ \ | | | | | | | | | 1fb91b3 Common argument defaults for NODE_BLOOM stuff and -wallet (Luke Dashjr)
| * | Common argument defaults for NODE_BLOOM stuff and -walletLuke Dashjr2016-02-113-6/+11
| | |
* | | Merge #7536: test: test leading spaces for ParseHexWladimir J. van der Laan2016-02-162-3/+7
|\ \ \ | | | | | | | | | | | | f31b6b8 test: test leading space for ParseHex (Wladimir J. van der Laan)
| * | | test: test leading space for ParseHexWladimir J. van der Laan2016-02-152-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | BerkeleyDB dump files have key and value lines indented. The salvage code passes these to ParseHex as-is. Check this in the tests (should just pass with current code).
* | | | Merge #7504: Crystal clean make cleanWladimir J. van der Laan2016-02-151-0/+1
|\ \ \ \ | |/ / / |/| | | | | | | ae6eca0 make clean should clean .a files (Pavel Janík)
| * | | make clean should clean .a filesPavel Janík2016-02-101-0/+1
| | | |
* | | | Fix and cleanup listreceivedbyX documentationinstagibbs2016-02-121-2/+2
| |_|/ |/| |
* | | Merge #7184: Implement SequenceLocks functions for BIP 68Wladimir J. van der Laan2016-02-1210-50/+301
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | b043c4b fix sdaftuar's nits again (Alex Morcos) a51c79b Bug fix to RPC test (Alex Morcos) da6ad5f Add RPC test exercising BIP68 (mempool only) (Suhas Daftuar) c6c2f0f Implement SequenceLocks functions (Alex Morcos)
| * | | fix sdaftuar's nits againAlex Morcos2016-02-113-7/+7
| | | | | | | | | | | | | | | | it boggles the mind why these nits can't be delivered on a more timely basis
| * | | Implement SequenceLocks functionsAlex Morcos2016-02-1010-50/+301
| | | | | | | | | | | | | | | | | | | | | | | | | | | | SequenceLocks functions are used to evaluate sequence lock times or heights per BIP 68. The majority of this code is copied from maaku in #6312 Further credit: btcdrak, sipa, NicolasDorier
* | | | Merge #7520: LibreSSL doesn't define OPENSSL_VERSION, use ↵Wladimir J. van der Laan2016-02-121-1/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | LIBRESSL_VERSION_TEXT instead a0a17b3 LibreSSL doesn't define OPENSSL_VERSION, use LIBRESSL_VERSION_TEXT instead (Pavel Janík)
| * | | | LibreSSL doesn't define OPENSSL_VERSION, use LIBRESSL_VERSION_TEXT insteadPavel Janík2016-02-121-1/+3
| | |_|/ | |/| |
* | | | Merge #7500: Correctly report high-S violationsWladimir J. van der Laan2016-02-101-1/+4
|\ \ \ \ | |_|_|/ |/| | | | | | | 9d95187 Correctly report high-S violations (Pieter Wuille)
| * | | Correctly report high-S violationsPieter Wuille2016-02-101-1/+4
| | | |
* | | | Merge #7502: Update the wallet best block marker when pruningWladimir J. van der Laan2016-02-101-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | e4eebb6 Update the wallet best block marker when pruning (Pieter Wuille)
| * | | | Update the wallet best block marker when pruningPieter Wuille2016-02-101-1/+1
| | | | |
* | | | | Merge #7491: wallet: Ignore MarkConflict if block hash is not knownWladimir J. van der Laan2016-02-101-6/+11
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | 40e7b61 wallet: Ignore MarkConflict if block hash is not known (Wladimir J. van der Laan)
| * | | | wallet: Ignore MarkConflict if block hash is not knownWladimir J. van der Laan2016-02-091-6/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If number of conflict confirms cannot be determined, this means that the block is still unknown or not yet part of the main chain, for example during a reindex. Do nothing in that case, instead of crash with an assertion. Fixes #7234.
* | | | | tests: Remove May15 testWladimir J. van der Laan2016-02-092-67/+0
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This test is no longer relevant. It was introduced in 8c222dca4f961ad13ec64d690134a40d09b20813 to check the switch to 1MB blocks after the BDB too-many-locks issue back in 2013. The switching code has been long since removed. It also needs a specific data file that is hard to find. I've verified in #6320 that it still passes, however I think there is zero reason to keep it. Closes #6320.
* | | | Merge #7480: Changed getnetworkhps value to double to avoid overflow.Wladimir J. van der Laan2016-02-091-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | 993d089 Changed getnetworkhps value to double to avoid overflow. (instagibbs)
| * | | | Changed getnetworkhps value to double to avoid overflow.instagibbs2016-02-081-1/+1
| | | | |
* | | | | Merge #7482: [P2P] Ensure headers count is correctWladimir J. van der Laan2016-02-091-1/+3
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 301bc7b Update nQueuedValidatedHeaders after peer disconnection (Suhas Daftuar)
| * | | | | Update nQueuedValidatedHeaders after peer disconnectionSuhas Daftuar2016-02-081-1/+3
| | | | | |
* | | | | | Merge #7472: rpc: Add WWW-Authenticate header to 401 responseWladimir J. van der Laan2016-02-091-0/+5
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | 7c06fbd rpc: Add WWW-Authenticate header to 401 response (Wladimir J. van der Laan)
| * | | | | rpc: Add WWW-Authenticate header to 401 responseWladimir J. van der Laan2016-02-081-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A WWW-Authenticate header must be present in the 401 response to make clients know that they can authenticate, and how. WWW-Authenticate: Basic realm="jsonrpc" Fixes #7462.
* | | | | | Merge #7459: Consensus: Decouple pow.o from util.oWladimir J. van der Laan2016-02-052-12/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | f3757a0 Consensus: Decouple pow.cpp from util.h (Jorge Timón)
| * | | | | | Consensus: Decouple pow.cpp from util.hJorge Timón2016-02-042-12/+5
| | |_|/ / / | |/| | | |
* | | | | | Fix spelling: misbeha{b,v}ingMatt2016-02-041-1/+1
| |/ / / / |/| | | |
* | | | | Merge #7349: Build against system UniValue when availableWladimir J. van der Laan2016-02-043-7/+14
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 42407ed build-unix: Update UniValue build conditions (Luke Dashjr) cdcad9f LDADD dependency order shuffling (Luke Dashjr) 62f7f2e Bugfix: Always include univalue in DIST_SUBDIRS (Luke Dashjr) 2356515 Change default configure option --with-system-univalue to "no" (Luke Dashjr) 5d3b29b doc: Add UniValue to build instructions (Luke Dashjr) ab22705 Build against system UniValue when available (Luke Dashjr) 2adf7e2 Bugfix: The var is LIBUNIVALUE,not LIBBITCOIN_UNIVALUE (Luke Dashjr)
| * | | | | LDADD dependency order shufflingLuke Dashjr2016-01-311-2/+2
| | | | | |
| * | | | | Bugfix: Always include univalue in DIST_SUBDIRSLuke Dashjr2016-01-311-3/+1
| | | | | |
| * | | | | Build against system UniValue when availableLuke Dashjr2016-01-152-6/+15
| | | | | |
| * | | | | Bugfix: The var is LIBUNIVALUE,not LIBBITCOIN_UNIVALUELuke Dashjr2016-01-151-1/+1
| | |_|/ / | |/| | |
* | | | | Merge #6480: include the chaintip blockindex in the SyncTransaction signal, ↵Wladimir J. van der Laan2016-02-047-15/+16
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add signal UpdateTip() 7d0bf0b include the chaintip *blockIndex in the SyncTransaction signal (Jonas Schnelli)
| * | | | | include the chaintip *blockIndex in the SyncTransaction signalJonas Schnelli2015-12-047-15/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - allows reducing of calls to main.cpp for getting the chaintip during transaction syncing - potentially allows reducing of cs_main locks
* | | | | | Merge #7070: Move maxTxFee out of mempoolWladimir J. van der Laan2016-02-046-18/+18
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fad6244 ATMP: make nAbsurdFee const (MarcoFalke) fa762d0 [wallet.h] Remove main.h include (MarcoFalke) fa79db2 Move maxTxFee out of mempool (MarcoFalke)
| * | | | | | ATMP: make nAbsurdFee constMarcoFalke2016-02-032-3/+3
| | | | | | |
| * | | | | | [wallet.h] Remove main.h includeMarcoFalke2016-02-031-1/+0
| | | | | | |
| * | | | | | Move maxTxFee out of mempoolMarcoFalke2016-02-026-17/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, remove default values in CMerkleTx::AcceptToMemoryPool()
* | | | | | | Merge #7192: Unify product name to as few places as possibleWladimir J. van der Laan2016-02-0427-91/+176
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 027fdb8 When/if the copyright line does not mention Bitcoin Core developers, add a second line to copyrights in -version, About dialog, and splash screen (Luke Dashjr) cc2095e Rewrite FormatParagraph to handle newlines within input strings correctly (Luke Dashjr) cddffaf Bugfix: Include COPYRIGHT_HOLDERS_SUBSTITUTION in Makefile substitutions so it gets passed to extract-strings correctly (Luke Dashjr) 29598e4 Move PACKAGE_URL to configure.ac (Luke Dashjr) 78ec83d splashscreen: Resize text to fit exactly (Luke Dashjr) 3cae140 Bugfix: Actually use _COPYRIGHT_HOLDERS_SUBSTITUTION everywhere (Luke Dashjr) 4d5a3df Bugfix: gitian-descriptors: Add missing python-setuptools requirement for OS X (biplist module) (Luke Dashjr) e4ab5e5 Bugfix: Correct copyright year in Mac DMG background image (Luke Dashjr) 917b1d0 Set copyright holders displayed in notices separately from the package name (Luke Dashjr) c39a6ff Travis & gitian-osx: Use depends for ds_store and mac_alias modules (Luke Dashjr) 902ccde depends: Add mac_alias to depends (Luke Dashjr) 82a2d98 depends: Add ds_store to depends (Cory Fields) de619a3 depends: Pass PYTHONPATH along to configure (Cory Fields) e611b6e macdeploy: Use rsvg-convert rather than cairosvg (Luke Dashjr) 63bcdc5 More complicated package name substitution for Mac deployment (Luke Dashjr) 1a6c67c Parameterise 2009 in translatable copyright strings (Luke Dashjr) d5f4683 Unify package name to as few places as possible without major changes (Luke Dashjr)