aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Move context-required checks from CheckBlockHeader to Contextual...Matt Corallo2016-06-192-17/+17
|
* If AcceptBlockHeader returns true, pindex will be set.Matt Corallo2016-06-191-3/+3
| | | | | | Assert this instead of checking (and then dref'ing later anyway) to make sure no one thinks they can change that postcondition of AcceptBlockHeader..
* Stop trimming when mapTx is emptyPieter Wuille2016-06-191-1/+1
|
* Merge #8215: [wallet] tests: Don't use floating pointMarcoFalke2016-06-181-21/+25
|\ | | | | | | faa91b1 [wallet] tests: Don't use floating point (MarcoFalke)
| * [wallet] tests: Don't use floating pointMarcoFalke2016-06-171-21/+25
| |
* | Merge #8214: [qa] mininode: fail on send_message instead of silent returnMarcoFalke2016-06-171-1/+1
|\ \ | |/ |/| | | facb6c0 [qa] mininode: fail on send_message instead of silent return (MarcoFalke)
| * [qa] mininode: fail on send_message instead of silent returnMarcoFalke2016-06-171-1/+1
|/
* Merge #7600: Mining: Select transactions using feerate-with-ancestorsPieter Wuille2016-06-163-1/+432
|\ | | | | | | | | 29fac19 Add unit tests for ancestor feerate mining (Suhas Daftuar) c82a4e9 Use ancestor-feerate based transaction selection for mining (Suhas Daftuar)
| * Add unit tests for ancestor feerate miningSuhas Daftuar2016-06-161-0/+109
| |
| * Use ancestor-feerate based transaction selection for miningSuhas Daftuar2016-06-162-1/+323
| | | | | | | | Includes changes by Pieter Wuille
* | Merge #7892: Add full UTF-8 support to RPCWladimir J. van der Laan2016-06-1614-44/+209
|\ \ | | | | | | | | | | | | | | | | | | 7982fce doc: Mention full UTF-8 support in release notes (Wladimir J. van der Laan) 6bbb4ef test: test utf-8 for labels in wallet (Wladimir J. van der Laan) a406fcb test: add ensure_ascii setting to AuthServiceProxy (Wladimir J. van der Laan) 60ab9b2 Squashed 'src/univalue/' changes from 2740c4f..f32df99 (Wladimir J. van der Laan)
| * | doc: Mention full UTF-8 support in release notesWladimir J. van der Laan2016-06-101-0/+5
| | |
| * | test: test utf-8 for labels in walletWladimir J. van der Laan2016-06-101-0/+14
| | |
| * | test: add ensure_ascii setting to AuthServiceProxyWladimir J. van der Laan2016-06-101-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | Add a setting ensure_ascii to AuthServiceProxy. This setting, defaulting to True (backwards compatible), is passed through to json.dumps. If set to False, non-ASCII characters >0x80 are not escaped. This is useful for testing server input processing, as well as slightly more bandwidth friendly in case of heavy unicode usage.
| * | Merge commit '60ab9b200654ef0914459711cf2b22be16be3dc2'Wladimir J. van der Laan2016-06-1011-37/+181
| |\ \
| | * | Squashed 'src/univalue/' changes from 2740c4f..f32df99Wladimir J. van der Laan2016-06-1011-37/+181
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | f32df99 Merge branch '2016_04_unicode' into bitcoin 280b191 Merge remote-tracking branch 'jgarzik/master' into bitcoin c9a716c Handle UTF-8 bed8dd9 Version 1.0.2. 5e7985a Merge pull request #14 from laanwj/2015_11_escape_plan git-subtree-dir: src/univalue git-subtree-split: f32df99e96d99ab49e5eeda16cac93747d388245
* | | | Merge #8113: Rework addnode behaviourWladimir J. van der Laan2016-06-164-125/+115
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | 1a5a4e6 Randomize name lookup result in ConnectSocketByName (Pieter Wuille) f9f5cfc Prevent duplicate connections where one is by name and another by ip (Pieter Wuille) 1111b80 Rework addnode behaviour (Pieter Wuille)
| * | | | Randomize name lookup result in ConnectSocketByNamePieter Wuille2016-06-131-4/+4
| | | | |
| * | | | Prevent duplicate connections where one is by name and another by ipPieter Wuille2016-06-131-0/+20
| | | | |
| * | | | Rework addnode behaviourPieter Wuille2016-06-133-121/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use CNode::addeName to track whether a connection to a name is already open * A new connection to a previously-connected by-name addednode is only opened when the previous one closes (even if the name starts resolving to something else) * At most one connection is opened per addednode (even if the name resolves to multiple) * Unify the code between ThreadOpenAddedNodeConnections and getaddednodeinfo * Information about open connections is always returned, and the dns argument becomes a dummy * An IP address and inbound/outbound is only reported for the (at most 1) open connection
* | | | | Merge #8171: [RPC] Fix createrawtx sequence number unsigned int parsingWladimir J. van der Laan2016-06-162-2/+21
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | 6fa950a [RPC] Fix createrawtx sequence number unsigned int parsing (Jonas Schnelli)
| * | | | | [RPC] Fix createrawtx sequence number unsigned int parsingJonas Schnelli2016-06-082-2/+21
| | | | | |
* | | | | | Merge #8084: Add recently accepted blocks and txn to AttemptToEvictConnection.Wladimir J. van der Laan2016-06-164-17/+61
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6ee7f05 Allow disconnecting a netgroup with only one member in eviction. (Gregory Maxwell) 5d0ca81 Add recently accepted blocks and txn to AttemptToEvictConnection. (Gregory Maxwell)
| * | | | | | Allow disconnecting a netgroup with only one member in eviction.Gregory Maxwell2016-06-151-7/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the latest additions there are enough protective measures that we can take the training wheels off.
| * | | | | | Add recently accepted blocks and txn to AttemptToEvictConnection.Gregory Maxwell2016-06-154-10/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This protects any not-already-protected peers who were the most recent four to relay transactions and most recent four to send blocks to us.
* | | | | | | Merge #8208: Do not set extra flags for unfiltered DNS seed resultsWladimir J. van der Laan2016-06-163-12/+14
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | bc0a895 Do not set extra flags for unfiltered DNS seed results (Pieter Wuille)
| * | | | | | | Do not set extra flags for unfiltered DNS seed resultsPieter Wuille2016-06-153-12/+14
| | | | | | | |
* | | | | | | | Merge #8207: [trivial] Add a link to the Bitcoin-Core repository and website ↵Wladimir J. van der Laan2016-06-161-1/+10
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to the About Dialog fa58e5e [doc] Add website links to about dialog (MarcoFalke)
| * | | | | | | [doc] Add website links to about dialogMarcoFalke2016-06-161-1/+10
| | |_|/ / / / | |/| | | | |
* | | | | | | Merge #7636: Add bitcoin address label to request payment QR codeJonas Schnelli2016-06-144-7/+20
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 1c2a1ba Add address label to request payment QR Code (QT) (Francesco 'makevoid' Canessa)
| * | | | | | | Add address label to request payment QR Code (QT)Francesco 'makevoid' Canessa2016-06-134-7/+20
| | |_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the Receive 'Tab' of the QT wallet, when 'Show'ing a previously requested payment, add a label underneath the QR Code showing the bitcoin address where the funds will go to. This way the user can be sure that the QR code scanner app the user using is reading the correct bitcoin address, preventing funds to be stolen. Includes fix for HiDPI screens by @jonasschnelli.
* | | | | | | Merge #8198: [trivial] Sync ax_pthread with upstream draft4Wladimir J. van der Laan2016-06-141-275/+275
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 0e209f9 [trivial] Sync ax_pthread with upstream draft (fanquake)
| * | | | | | | [trivial] Sync ax_pthread with upstream draftfanquake2016-06-131-275/+275
| |/ / / / / /
* | | | | | | Merge #8035: [Wallet] Add simplest BIP32/deterministic key generation ↵Wladimir J. van der Laan2016-06-146-4/+173
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | implementation afcd77e Detect -usehd mismatches when wallet.dat already exists (Jonas Schnelli) 17c0131 [Docs] Add release notes and bip update for Bip32/HD wallets (Jonas Schnelli) c022e5b [Wallet] use constant for bip32 hardened key limit (Jonas Schnelli) f190251 [Wallet] Add simplest BIP32/deterministic key generation implementation (Jonas Schnelli)
| * | | | | | | Detect -usehd mismatches when wallet.dat already existsJonas Schnelli2016-06-141-0/+7
| | | | | | | |
| * | | | | | | [Docs] Add release notes and bip update for Bip32/HD walletsJonas Schnelli2016-06-102-0/+19
| | | | | | | |
| * | | | | | | [Wallet] use constant for bip32 hardened key limitJonas Schnelli2016-06-011-4/+8
| | | | | | | |
| * | | | | | | [Wallet] Add simplest BIP32/deterministic key generation implementationJonas Schnelli2016-05-314-4/+143
| | | | | | | |
* | | | | | | | Merge #8194: [gitian] set correct PATH for wrappersWladimir J. van der Laan2016-06-143-6/+12
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | fa61756 [gitian] set correct PATH for wrappers (MarcoFalke)
| * | | | | | | | [gitian] set correct PATH for wrappersMarcoFalke2016-06-123-6/+12
| | | | | | | | |
* | | | | | | | | Merge #8197: [trivial] Ignore split-debug.shWladimir J. van der Laan2016-06-141-0/+1
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 01a9904 [trivial] Ignore split-debug.sh (fanquake)
| * | | | | | | | | [trivial] Ignore split-debug.shfanquake2016-06-131-0/+1
| | | | | | | | | |
* | | | | | | | | | Merge #8201: [qa] fundrawtransaction: Fix race, assert amountsWladimir J. van der Laan2016-06-143-12/+22
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | fae1d06 [qa] fundrawtransaction: Fix race, assert amounts (MarcoFalke) fa26c42 [qa] util: Move check_fee_amount out of wallet.py (MarcoFalke)
| * | | | | | | | | [qa] fundrawtransaction: Fix race, assert amountsMarcoFalke2016-06-131-6/+12
| | | | | | | | | |
| * | | | | | | | | [qa] util: Move check_fee_amount out of wallet.pyMarcoFalke2016-06-132-6/+10
| | |_|_|/ / / / / | |/| | | | | | |
* | | | | | | | | Merge #7749: Enforce expected outbound servicesWladimir J. van der Laan2016-06-1311-78/+142
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ecd7fd3 Introduce REQUIRED_SERVICES constant (Pieter Wuille) ee06e04 Introduce enum ServiceFlags for service flags (Pieter Wuille) 15bf863 Don't require services in -addnode (Pieter Wuille) 5e7ab16 Only store and connect to NODE_NETWORK nodes (Pieter Wuille) fc83f18 Verify that outbound connections have expected services (Pieter Wuille) 3764dec Keep addrman's nService bits consistent with outbound observations (Pieter Wuille)
| * | | | | | | | Introduce REQUIRED_SERVICES constantPieter Wuille2016-06-133-2/+4
| | | | | | | | |
| * | | | | | | | Introduce enum ServiceFlags for service flagsPieter Wuille2016-06-1311-83/+89
| | | | | | | | |
| * | | | | | | | Don't require services in -addnodePieter Wuille2016-06-136-63/+64
| | | | | | | | |
| * | | | | | | | Only store and connect to NODE_NETWORK nodesPieter Wuille2016-06-132-0/+7
| | | | | | | | |