aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2017-01-12 12:20:11 -0800
committerMatt Corallo <git@bluematt.me>2017-01-12 12:20:11 -0800
commitfac4c78028d132ee7becc1dc54a0c881ae1a0287 (patch)
tree279ba5b403821cc7750a12d1453c93a57faed2e8
parentb55b4163462756cbb2341294b839a881333d8f1e (diff)
downloadbitcoin-fac4c78028d132ee7becc1dc54a0c881ae1a0287.tar.xz
Make PartiallyDownloadedBlock::InitData's second param const
-rw-r--r--src/blockencodings.cpp2
-rw-r--r--src/blockencodings.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/blockencodings.cpp b/src/blockencodings.cpp
index c27cde2162..48431cfb3c 100644
--- a/src/blockencodings.cpp
+++ b/src/blockencodings.cpp
@@ -47,7 +47,7 @@ uint64_t CBlockHeaderAndShortTxIDs::GetShortID(const uint256& txhash) const {
-ReadStatus PartiallyDownloadedBlock::InitData(const CBlockHeaderAndShortTxIDs& cmpctblock, std::vector<std::pair<uint256, CTransactionRef>>& extra_txn) {
+ReadStatus PartiallyDownloadedBlock::InitData(const CBlockHeaderAndShortTxIDs& cmpctblock, const std::vector<std::pair<uint256, CTransactionRef>>& extra_txn) {
if (cmpctblock.header.IsNull() || (cmpctblock.shorttxids.empty() && cmpctblock.prefilledtxn.empty()))
return READ_STATUS_INVALID;
if (cmpctblock.shorttxids.size() + cmpctblock.prefilledtxn.size() > MAX_BLOCK_BASE_SIZE / MIN_TRANSACTION_BASE_SIZE)
diff --git a/src/blockencodings.h b/src/blockencodings.h
index 971476cbbd..281db9fe01 100644
--- a/src/blockencodings.h
+++ b/src/blockencodings.h
@@ -201,7 +201,7 @@ public:
PartiallyDownloadedBlock(CTxMemPool* poolIn) : pool(poolIn) {}
// extra_txn is a list of extra transactions to look at, in <witness hash, reference> form
- ReadStatus InitData(const CBlockHeaderAndShortTxIDs& cmpctblock, std::vector<std::pair<uint256, CTransactionRef>>& extra_txn);
+ ReadStatus InitData(const CBlockHeaderAndShortTxIDs& cmpctblock, const std::vector<std::pair<uint256, CTransactionRef>>& extra_txn);
bool IsTxAvailable(size_t index) const;
ReadStatus FillBlock(CBlock& block, const std::vector<CTransactionRef>& vtx_missing);
};