diff options
| author | Pieter Wuille <[email protected]> | 2016-08-31 17:35:59 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-10-17 16:46:30 +0200 |
| commit | 3ac6de0a045cc9b2047ceb19af970e7ffbf905fa (patch) | |
| tree | db39a34fe1c247bf8b42c05c2bcbf20b4ac3903c /src/main.cpp | |
| parent | Add cmpctblock to debug help list (diff) | |
| download | discoin-3ac6de0a045cc9b2047ceb19af970e7ffbf905fa.tar.xz discoin-3ac6de0a045cc9b2047ceb19af970e7ffbf905fa.zip | |
Align constant names for maximum compact block / blocktxn depth
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0002a1c08..7e2742851 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4878,7 +4878,7 @@ void static ProcessGetData(CNode* pfrom, const Consensus::Params& consensusParam // and we don't feel like constructing the object for them, so // instead we respond with the full, non-compact block. bool fPeerWantsWitness = State(pfrom->GetId())->fWantsCmpctWitness; - if (CanDirectFetch(Params().GetConsensus()) && mi->second->nHeight >= chainActive.Height() - 5) { + if (CanDirectFetch(consensusParams) && mi->second->nHeight >= chainActive.Height() - MAX_CMPCTBLOCK_DEPTH) { CBlockHeaderAndShortTxIDs cmpctblock(block, fPeerWantsWitness); pfrom->PushMessageWithFlag(fPeerWantsWitness ? 0 : SERIALIZE_TRANSACTION_NO_WITNESS, NetMsgType::CMPCTBLOCK, cmpctblock); } else @@ -5405,8 +5405,8 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, return true; } - if (it->second->nHeight < chainActive.Height() - 10) { - LogPrint("net", "Peer %d sent us a getblocktxn for a block > 10 deep", pfrom->id); + if (it->second->nHeight < chainActive.Height() - MAX_BLOCKTXN_DEPTH) { + LogPrint("net", "Peer %d sent us a getblocktxn for a block > %i deep", pfrom->id, MAX_BLOCKTXN_DEPTH); return true; } |