diff options
| author | Pieter Wuille <[email protected]> | 2016-06-25 19:17:45 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-10-04 19:10:41 +0200 |
| commit | 6aa28abf53ef4694692474b4a3b0a8fa7559b50b (patch) | |
| tree | dca0f5961ecf9a1ddc75e642b5e862183f434fb9 /src/txmempool.h | |
| parent | Fix overly-prescriptive p2p-segwit test for new fetch logic (diff) | |
| download | discoin-6aa28abf53ef4694692474b4a3b0a8fa7559b50b.tar.xz discoin-6aa28abf53ef4694692474b4a3b0a8fa7559b50b.zip | |
Use cmpctblock type 2 for segwit-enabled transfer
Contains version negotiation logic by Matt Corallo and bugfixes by
Suhas Daftuar.
Diffstat (limited to 'src/txmempool.h')
| -rw-r--r-- | src/txmempool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index 6f67dd91d..941644b2b 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -465,7 +465,7 @@ public: indexed_transaction_set mapTx; typedef indexed_transaction_set::nth_index<0>::type::iterator txiter; - std::vector<std::pair<uint256, txiter> > vTxHashes; //!< All tx hashes/entries in mapTx, in random order + std::vector<std::pair<uint256, txiter> > vTxHashes; //!< All tx witness hashes/entries in mapTx, in random order struct CompareIteratorByHash { bool operator()(const txiter &a, const txiter &b) const { |