diff options
author | Gregory Maxwell <greg@xiph.org> | 2016-11-18 19:11:08 +0000 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2016-11-18 19:11:08 +0000 |
commit | 5b0150a060208faf436c09b0ca9463407a869c72 (patch) | |
tree | 949890fd2af23c00a7f1fab25a5f3c7df0e76b75 /src/main.cpp | |
parent | 9346f8429957e356d21c665bab59fe45bcf1f74e (diff) |
Make orphan parent fetching ask for witnesses.
In 0.13 orphan transactions began being treated as implicit
INVs for their parents. But the resulting getdata were
not getting the witness flag.
This fixes issue #9182 reported by chjj and roasbeef on IRC.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 263421aea4..9af612bb5f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -5686,8 +5686,9 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, } } if (!fRejectedParents) { + uint32_t nFetchFlags = GetFetchFlags(pfrom, chainActive.Tip(), chainparams.GetConsensus()); BOOST_FOREACH(const CTxIn& txin, tx.vin) { - CInv _inv(MSG_TX, txin.prevout.hash); + CInv _inv(MSG_TX | nFetchFlags, txin.prevout.hash); pfrom->AddInventoryKnown(_inv); if (!AlreadyHave(_inv)) pfrom->AskFor(_inv); } |